core: fixed an issue with storing receipts

This commit is contained in:
obscuren
2015-05-22 22:44:51 +02:00
parent 27e0d2a973
commit e3253b5d5e
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 = "";