diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-22 22:38:48 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-22 22:38:48 +0800 |
commit | 29fa57e9b34a95a30e5fcbe452579d3c01490b3f (patch) | |
tree | d7aa8ae270c062f3ec91ae18de927afaa03bd108 | |
parent | 13f39afbdd3e09a106bf5266cd7751173906e84d (diff) | |
download | dexon-29fa57e9b34a95a30e5fcbe452579d3c01490b3f.tar.gz dexon-29fa57e9b34a95a30e5fcbe452579d3c01490b3f.tar.zst dexon-29fa57e9b34a95a30e5fcbe452579d3c01490b3f.zip |
natspec.js updated to use sync api
-rw-r--r-- | example/natspec_contract.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/natspec_contract.html b/example/natspec_contract.html index fd7876239..5a3c9e6c5 100644 --- a/example/natspec_contract.html +++ b/example/natspec_contract.html @@ -56,7 +56,7 @@ // transaction does not return any result, cause it's not synchronous and we don't know, // when it will be processed - contract.multiply(param).transact(); + contract.transact().multiply(param); document.getElementById('result').innerText = 'transaction made'; } |