aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-05-23 04:44:51 +0800
committerobscuren <geffobscura@gmail.com>2015-05-28 07:00:23 +0800
commite3253b5d5e65bfb6944ddaabd3c79400fbe06ef8 (patch)
tree1704eb7e374cd810450f604233cad96461a76755 /cmd
parent27e0d2a97325edc9a870a747412d0b9a2abd1ed1 (diff)
downloadgo-tangerine-e3253b5d5e65bfb6944ddaabd3c79400fbe06ef8.tar
go-tangerine-e3253b5d5e65bfb6944ddaabd3c79400fbe06ef8.tar.gz
go-tangerine-e3253b5d5e65bfb6944ddaabd3c79400fbe06ef8.tar.bz2
go-tangerine-e3253b5d5e65bfb6944ddaabd3c79400fbe06ef8.tar.lz
go-tangerine-e3253b5d5e65bfb6944ddaabd3c79400fbe06ef8.tar.xz
go-tangerine-e3253b5d5e65bfb6944ddaabd3c79400fbe06ef8.tar.zst
go-tangerine-e3253b5d5e65bfb6944ddaabd3c79400fbe06ef8.zip
core: fixed an issue with storing receipts
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 = "";