diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-22 21:37:34 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-22 21:37:34 +0800 |
commit | 0202b05a5dc328522697085f493ef06572997993 (patch) | |
tree | a35989ea27e39c82e34bd887428b29099744aa0c /example/contract.html | |
parent | 22c77c607ee1ef181bca56123a95f99b96753895 (diff) | |
download | go-tangerine-0202b05a5dc328522697085f493ef06572997993.tar go-tangerine-0202b05a5dc328522697085f493ef06572997993.tar.gz go-tangerine-0202b05a5dc328522697085f493ef06572997993.tar.bz2 go-tangerine-0202b05a5dc328522697085f493ef06572997993.tar.lz go-tangerine-0202b05a5dc328522697085f493ef06572997993.tar.xz go-tangerine-0202b05a5dc328522697085f493ef06572997993.tar.zst go-tangerine-0202b05a5dc328522697085f493ef06572997993.zip |
implicit solidity method call
Diffstat (limited to 'example/contract.html')
-rw-r--r-- | example/contract.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/contract.html b/example/contract.html index 3d0260d34..f3dd7d3af 100644 --- a/example/contract.html +++ b/example/contract.html @@ -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]; } |