Merge pull request #1132 from obscuren/log_optimisations

core: log optimisations
This commit is contained in:
Jeffrey Wilcke
2015-05-28 07:35:07 -07:00
5 changed files with 123 additions and 32 deletions

View File

@ -102,7 +102,7 @@ window.filter = filter;
var amount = parseInt( value.value );
console.log("transact: ", to.value, " => ", amount)
contract.sendTransaction({from: eth.accounts[0]}).send( to.value, amount );
contract.send.sendTransaction(to.value, amount ,{from: eth.accounts[0]});
to.value = "";
value.value = "";