diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-15 23:01:58 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-15 23:01:58 +0800 |
commit | ec74fc05d438806ece64fe34b0f28c8f45f5167e (patch) | |
tree | ff11239c13765f41571840035f2dee633f9eeaab /lib | |
parent | 46b932ccc03b0251d97084bbbde5193532b5618f (diff) | |
download | dexon-ec74fc05d438806ece64fe34b0f28c8f45f5167e.tar dexon-ec74fc05d438806ece64fe34b0f28c8f45f5167e.tar.gz dexon-ec74fc05d438806ece64fe34b0f28c8f45f5167e.tar.bz2 dexon-ec74fc05d438806ece64fe34b0f28c8f45f5167e.tar.lz dexon-ec74fc05d438806ece64fe34b0f28c8f45f5167e.tar.xz dexon-ec74fc05d438806ece64fe34b0f28c8f45f5167e.tar.zst dexon-ec74fc05d438806ece64fe34b0f28c8f45f5167e.zip |
gulp
Diffstat (limited to 'lib')
-rw-r--r-- | lib/abi.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/abi.js b/lib/abi.js index d779944d2..b51fbab59 100644 --- a/lib/abi.js +++ b/lib/abi.js @@ -92,7 +92,7 @@ var setupInputTypes = function () { // two's complement // TODO: fix big numbers support - value = ((value) >>> 0).toString(16) + value = ((value) >>> 0).toString(16); return padLeft(value, padding, 'f'); } value = value.toString(16); |