aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-05-28 22:35:07 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-05-28 22:35:07 +0800
commit03178a77b66b55c26b966dab5069847b1d139054 (patch)
treef5552fae68535f2308bef2e01053bfaabd52d078 /cmd
parent4baa5ca963552df6ed11112094f08111c8cf14bd (diff)
parente3253b5d5e65bfb6944ddaabd3c79400fbe06ef8 (diff)
downloadgo-tangerine-03178a77b66b55c26b966dab5069847b1d139054.tar
go-tangerine-03178a77b66b55c26b966dab5069847b1d139054.tar.gz
go-tangerine-03178a77b66b55c26b966dab5069847b1d139054.tar.bz2
go-tangerine-03178a77b66b55c26b966dab5069847b1d139054.tar.lz
go-tangerine-03178a77b66b55c26b966dab5069847b1d139054.tar.xz
go-tangerine-03178a77b66b55c26b966dab5069847b1d139054.tar.zst
go-tangerine-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.html2
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 = "";