diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-09 20:30:14 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-09 20:30:14 +0800 |
commit | 543a87c63f77a61fb91a07515c2f6383b791a27d (patch) | |
tree | 7f1e5e7eb01bca56f02ca641d4886c47690ca3c5 /dist/ethereum.js | |
parent | a5907a8239c2d60ee5491ae2a33b105480798c6a (diff) | |
download | go-tangerine-543a87c63f77a61fb91a07515c2f6383b791a27d.tar go-tangerine-543a87c63f77a61fb91a07515c2f6383b791a27d.tar.gz go-tangerine-543a87c63f77a61fb91a07515c2f6383b791a27d.tar.bz2 go-tangerine-543a87c63f77a61fb91a07515c2f6383b791a27d.tar.lz go-tangerine-543a87c63f77a61fb91a07515c2f6383b791a27d.tar.xz go-tangerine-543a87c63f77a61fb91a07515c2f6383b791a27d.tar.zst go-tangerine-543a87c63f77a61fb91a07515c2f6383b791a27d.zip |
method signature length defined
Diffstat (limited to 'dist/ethereum.js')
-rw-r--r-- | dist/ethereum.js | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/dist/ethereum.js b/dist/ethereum.js index c87ebf204..b768f88a4 100644 --- a/dist/ethereum.js +++ b/dist/ethereum.js @@ -411,6 +411,9 @@ if ("build" !== 'build') {/* var abi = require('./abi'); +// method signature length in bytes +var ETH_METHOD_SIGNATURE_LENGTH = 4; + var contract = function (address, desc) { var inputParser = abi.inputParser(desc); var outputParser = abi.outputParser(desc); @@ -431,7 +434,7 @@ var contract = function (address, desc) { extra = extra || {}; extra.to = address; return abi.methodSignature(desc, method.name).then(function (signature) { - extra.data = signature.slice(0, 10) + parsed; + extra.data = signature.slice(0, 2 + ETH_METHOD_SIGNATURE_LENGTH * 2) + parsed; return web3.eth.call(extra).then(onSuccess); }); }, @@ -1101,7 +1104,8 @@ function messageHandler(data) { } } -module.exports = web3; +if (typeof(module) !== "undefined") + module.exports = web3; },{}],7:[function(require,module,exports){ /* @@ -1180,7 +1184,8 @@ Object.defineProperty(WebSocketProvider.prototype, "onmessage", { set: function(provider) { this.onMessage(provider); } }); -module.exports = WebSocketProvider; +if (typeof(module) !== "undefined") + module.exports = WebSocketProvider; },{}],"web3":[function(require,module,exports){ var web3 = require('./lib/web3'); |