diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-08 22:31:46 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-08 22:31:46 +0800 |
commit | f9cc09047351ce905d7257a73907398c17603607 (patch) | |
tree | a8e136cca60a2bff9ce3fc999f5e203ea41ae059 | |
parent | 2f3384947bcf8393c98adab54eab0d9f0c46dfa0 (diff) | |
download | dexon-f9cc09047351ce905d7257a73907398c17603607.tar dexon-f9cc09047351ce905d7257a73907398c17603607.tar.gz dexon-f9cc09047351ce905d7257a73907398c17603607.tar.bz2 dexon-f9cc09047351ce905d7257a73907398c17603607.tar.lz dexon-f9cc09047351ce905d7257a73907398c17603607.tar.xz dexon-f9cc09047351ce905d7257a73907398c17603607.tar.zst dexon-f9cc09047351ce905d7257a73907398c17603607.zip |
fixed example
-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 44f0b03a1..403d8c9d1 100644 --- a/example/contract.html +++ b/example/contract.html @@ -50,7 +50,7 @@ function callExampleContract() { // this should be generated by ethereum - var param = document.getElementById('value').value; + var param = parseInt(document.getElementById('value').value); // call the contract contract.multiply(param).call().then(function(res) { |