implicit solidity method call

This commit is contained in:
Marek Kotewicz
2015-01-22 14:37:34 +01:00
parent 22c77c607e
commit 0202b05a5d
5 changed files with 84 additions and 62 deletions

View File

@ -53,7 +53,7 @@
var param = parseInt(document.getElementById('value').value);
// call the contract
var res = contract.multiply(param).call();
var res = contract.multiply(param);
document.getElementById('result').innerText = res[0];
}