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 /dist/ethereum.js | |
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 'dist/ethereum.js')
-rw-r--r-- | dist/ethereum.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dist/ethereum.js b/dist/ethereum.js index 7bcf86c81..2371eaa90 100644 --- a/dist/ethereum.js +++ b/dist/ethereum.js @@ -521,6 +521,8 @@ var contract = function (address, desc) { // TODO: figure out better way to solve this 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); |