diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-28 22:35:07 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-28 22:35:07 +0800 |
commit | 03178a77b66b55c26b966dab5069847b1d139054 (patch) | |
tree | f5552fae68535f2308bef2e01053bfaabd52d078 /cmd | |
parent | 4baa5ca963552df6ed11112094f08111c8cf14bd (diff) | |
parent | e3253b5d5e65bfb6944ddaabd3c79400fbe06ef8 (diff) | |
download | dexon-03178a77b66b55c26b966dab5069847b1d139054.tar.gz dexon-03178a77b66b55c26b966dab5069847b1d139054.tar.zst dexon-03178a77b66b55c26b966dab5069847b1d139054.zip |
Merge pull request #1132 from obscuren/log_optimisations
core: log optimisations
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/mist/assets/examples/coin.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mist/assets/examples/coin.html b/cmd/mist/assets/examples/coin.html index e6baf4579..4fe8e7fa2 100644 --- a/cmd/mist/assets/examples/coin.html +++ b/cmd/mist/assets/examples/coin.html @@ -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 = ""; |