diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-22 01:56:30 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-22 01:56:30 +0800 |
commit | f3e78e50ff5c02b9b365de0571f1782b205cb319 (patch) | |
tree | 3b0cd980c3b78f25d5266e70d7d668f2b64ae160 | |
parent | 848c54dc4713d5c29993f1c41d16cd334e18081d (diff) | |
download | go-tangerine-f3e78e50ff5c02b9b365de0571f1782b205cb319.tar go-tangerine-f3e78e50ff5c02b9b365de0571f1782b205cb319.tar.gz go-tangerine-f3e78e50ff5c02b9b365de0571f1782b205cb319.tar.bz2 go-tangerine-f3e78e50ff5c02b9b365de0571f1782b205cb319.tar.lz go-tangerine-f3e78e50ff5c02b9b365de0571f1782b205cb319.tar.xz go-tangerine-f3e78e50ff5c02b9b365de0571f1782b205cb319.tar.zst go-tangerine-f3e78e50ff5c02b9b365de0571f1782b205cb319.zip |
changes to for natspec
-rw-r--r-- | index.js | 1 | ||||
-rw-r--r-- | lib/contract.js | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -7,5 +7,6 @@ web3.providers.HttpRpcProvider = require('./lib/httprpc'); web3.providers.QtProvider = require('./lib/qt'); web3.providers.AutoProvider = require('./lib/autoprovider'); web3.eth.contract = require('./lib/contract'); +web3.abi = require('./lib/abi'); module.exports = web3; diff --git a/lib/contract.js b/lib/contract.js index 67fb407ad..abd8e5bdf 100644 --- a/lib/contract.js +++ b/lib/contract.js @@ -79,7 +79,8 @@ var contract = function (address, desc) { extra.to = address; return abi.methodSignature(desc, method.name).then(function (signature) { extra.data = signature.slice(0, 2 + ETH_METHOD_SIGNATURE_LENGTH * 2) + parsed; - web3._currentAbi = desc; + web3._currentContractAbi = desc; + web3._currentContractAddress = address; return web3.eth.transact(extra).then(onSuccess); }); } |