small fix

This commit is contained in:
Ricardo Guilherme Schmidt 2018-06-05 11:45:35 -03:00
parent 3477b7b24c
commit af17134f3e
1 changed files with 1 additions and 2 deletions

View File

@ -26,9 +26,8 @@ class TestTokenUI extends React.Component {
TestToken.methods.mint(value).send({from: web3.eth.defaultAccount}); TestToken.methods.mint(value).send({from: web3.eth.defaultAccount});
} else { } else {
TestToken.mint(value); TestToken.mint(value);
this._addToLog("#blockchain", "TestToken.mint(" + value + ")");
} }
this._addToLog(TestToken.options.address +".mint("+value+").send({from: " + web3.eth.defaultAccount + "})"); console.log(TestToken.options.address +".mint("+value+").send({from: " + web3.eth.defaultAccount + "})");
} }
render(){ render(){