forked from cerc-io/plugeth
evaluating solidity method input params
This commit is contained in:
parent
6d59047c5f
commit
42a25f2f26
2
dist/ethereum.js
vendored
2
dist/ethereum.js
vendored
@ -521,6 +521,8 @@ var contract = function (address, desc) {
|
|||||||
// TODO: figure out better way to solve this
|
// TODO: figure out better way to solve this
|
||||||
web3._currentContractAbi = desc;
|
web3._currentContractAbi = desc;
|
||||||
web3._currentContractAddress = address;
|
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
|
// transactions do not have any output, cause we do not know, when they will be processed
|
||||||
web3.eth.transact(options);
|
web3.eth.transact(options);
|
||||||
|
4
dist/ethereum.js.map
vendored
4
dist/ethereum.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/ethereum.min.js
vendored
2
dist/ethereum.min.js
vendored
File diff suppressed because one or more lines are too long
@ -111,6 +111,7 @@ var contract = function (address, desc) {
|
|||||||
web3._currentContractAbi = desc;
|
web3._currentContractAbi = desc;
|
||||||
web3._currentContractAddress = address;
|
web3._currentContractAddress = address;
|
||||||
web3._currentContractMethodName = method.name;
|
web3._currentContractMethodName = method.name;
|
||||||
|
web3._currentContractMethodParams = params;
|
||||||
|
|
||||||
// transactions do not have any output, cause we do not know, when they will be processed
|
// transactions do not have any output, cause we do not know, when they will be processed
|
||||||
web3.eth.transact(options);
|
web3.eth.transact(options);
|
||||||
|
Loading…
Reference in New Issue
Block a user