good morning!!!!

Skip to content
Snippets Groups Projects
Commit 42a25f2f authored by Marek Kotewicz's avatar Marek Kotewicz
Browse files

evaluating solidity method input params

parent 6d59047c
Branches
Tags
No related merge requests found
......@@ -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);
......
This diff is collapsed.
This diff is collapsed.
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment