diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-27 21:31:50 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-27 21:31:50 +0800 |
commit | 42a25f2f26f14a0b0ecfca31b5000f7a1d50240a (patch) | |
tree | 896baf8f94f92acc7a76f900cb0a4fe50eca29ec /lib | |
parent | 6d59047c5f1f7102f399ca9d009dc91c867a2b2f (diff) | |
download | go-tangerine-42a25f2f26f14a0b0ecfca31b5000f7a1d50240a.tar go-tangerine-42a25f2f26f14a0b0ecfca31b5000f7a1d50240a.tar.gz go-tangerine-42a25f2f26f14a0b0ecfca31b5000f7a1d50240a.tar.bz2 go-tangerine-42a25f2f26f14a0b0ecfca31b5000f7a1d50240a.tar.lz go-tangerine-42a25f2f26f14a0b0ecfca31b5000f7a1d50240a.tar.xz go-tangerine-42a25f2f26f14a0b0ecfca31b5000f7a1d50240a.tar.zst go-tangerine-42a25f2f26f14a0b0ecfca31b5000f7a1d50240a.zip |
evaluating solidity method input params
Diffstat (limited to 'lib')
-rw-r--r-- | lib/contract.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/contract.js b/lib/contract.js index 65115a211..e71734d0b 100644 --- a/lib/contract.js +++ b/lib/contract.js @@ -111,6 +111,7 @@ var contract = function (address, desc) { web3._currentContractAbi = desc; web3._currentContractAddress = address; web3._currentContractMethodName = method.name; + web3._currentContractMethodParams = params; // transactions do not have any output, cause we do not know, when they will be processed web3.eth.transact(options); |