diff options
Diffstat (limited to 'dist/ethereum.js')
-rw-r--r-- | dist/ethereum.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/ethereum.js b/dist/ethereum.js index 1b0aa5e73..f3d53ed30 100644 --- a/dist/ethereum.js +++ b/dist/ethereum.js @@ -500,11 +500,11 @@ var contract = function (address, desc) { options.to = address; options.data = signature + parsed; - var isTransact = result._isTransact; + var isTransact = result._isTransact === true || (result._isTransact !== false && !method.constant); // reset result._options = {}; - result._isTransact = false; + result._isTransact = null; if (isTransact) { // it's used byt natspec.js |