Commit 13f39afb authored by Marek Kotewicz's avatar Marek Kotewicz

Merge commit '93fa6855afad7a7eb86e49efe384372a6060da35' into natspec

parents 6c4432d4 3073511e
......@@ -488,22 +488,24 @@ var contract = function (address, desc) {
options.to = address;
options.data = signature + parsed;
var output = "";
if (result._isTransact) {
var isTransact = result._isTransact;
// reset
result._options = {};
result._isTransact = false;
if (isTransact) {
// it's used byt natspec.js
// TODO: figure out better way to solve this
web3._currentContractAbi = desc;
web3._currentContractAddress = address;
output = web3.eth.transact(options);
} else {
output = web3.eth.call(options);
// transactions do not have any output, cause we do not know, when they will be processed
web3.eth.transact(options);
return;
}
// reset
result._options = {};
result._isTransact = false;
var output = web3.eth.call(options);
return outputParser[displayName][typeName](output);
};
......
This diff is collapsed.
This diff is collapsed.
......@@ -77,22 +77,24 @@ var contract = function (address, desc) {
options.to = address;
options.data = signature + parsed;
var output = "";
if (result._isTransact) {
var isTransact = result._isTransact;
// reset
result._options = {};
result._isTransact = false;
if (isTransact) {
// it's used byt natspec.js
// TODO: figure out better way to solve this
web3._currentContractAbi = desc;
web3._currentContractAddress = address;
output = web3.eth.transact(options);
} else {
output = web3.eth.call(options);
// transactions do not have any output, cause we do not know, when they will be processed
web3.eth.transact(options);
return;
}
// reset
result._options = {};
result._isTransact = false;
var output = web3.eth.call(options);
return outputParser[displayName][typeName](output);
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment