diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2014-11-13 03:39:13 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2014-11-13 03:39:13 +0800 |
commit | 3451f2608682bd044d7b7165b0d3aa640e8fd81f (patch) | |
tree | b6902919de49e8ab265a48a88a4c6ac466dc55b9 /lib/abi.js | |
parent | 05290d554749c7b3507da4af11796112c67be718 (diff) | |
download | dexon-3451f2608682bd044d7b7165b0d3aa640e8fd81f.tar dexon-3451f2608682bd044d7b7165b0d3aa640e8fd81f.tar.gz dexon-3451f2608682bd044d7b7165b0d3aa640e8fd81f.tar.bz2 dexon-3451f2608682bd044d7b7165b0d3aa640e8fd81f.tar.lz dexon-3451f2608682bd044d7b7165b0d3aa640e8fd81f.tar.xz dexon-3451f2608682bd044d7b7165b0d3aa640e8fd81f.tar.zst dexon-3451f2608682bd044d7b7165b0d3aa640e8fd81f.zip |
changes to make everything work
Diffstat (limited to 'lib/abi.js')
-rw-r--r-- | lib/abi.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/abi.js b/lib/abi.js index 3082b8232..9102454b0 100644 --- a/lib/abi.js +++ b/lib/abi.js @@ -9,7 +9,7 @@ var findIndex = function (array, callback) { }; var padLeft = function (number, n) { - return (new Array(n - number.toString.length + 1)).join("0") + number; + return (new Array(n * 2 - number.toString().length + 1)).join("0") + number; }; var setupTypes = function () { @@ -55,7 +55,9 @@ var toBytes = function (json, methodName, params) { return; } - bytes = bytes + index + 'x'; + // it needs to be checked in WebThreeStubServer + // something wrong might be with this additional zero + bytes = bytes + index + 'x' + '0'; var method = json[index]; for (var i = 0; i < method.inputs.length; i++) { |