Fix invalid props (#4767)

This commit is contained in:
Arkadiy Paronyan 2017-03-05 10:27:37 +01:00 committed by Gav Wood
parent 46ac2cb94b
commit 02be8d869c

View File

@ -44,7 +44,7 @@ export default class VerificationStore {
@observable consentGiven = false;
@observable requestTx = null;
@observable code = '';
@observable isCodeValid = null;
@observable isCodeValid = false;
@observable confirmationTx = null;
constructor (api, abi, certifierName, account, isTestnet) {
@ -132,7 +132,7 @@ export default class VerificationStore {
const values = [ sha3.text(code) ];
this.code = code;
this.isCodeValid = null;
this.isCodeValid = false;
confirm.estimateGas(options, values)
.then((gas) => {
options.gas = gas.mul(1.2).toFixed(0);