diff options
Diffstat (limited to 'lib/web3.js')
-rw-r--r-- | lib/web3.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/web3.js b/lib/web3.js index 7cf624c9c..622be29b6 100644 --- a/lib/web3.js +++ b/lib/web3.js @@ -233,7 +233,9 @@ var web3 = { /// @returns decimal representaton of hex value prefixed by 0x toDecimal: function (val) { - return (new BigNumber(val.substring(2), 16).toString(10)); + // remove 0x and place 0, if it's required + val = val.length > 2 ? val.substring(2) : "0"; + return (new BigNumber(val, 16).toString(10)); }, /// @returns hex representation (prefixed by 0x) of decimal value |