diff options
author | Marian OANCΞA <contact@siteshop.ro> | 2014-11-10 20:09:21 +0800 |
---|---|---|
committer | Marian OANCΞA <contact@siteshop.ro> | 2014-11-10 20:09:21 +0800 |
commit | f5024b4926ae90c7d5f560deefe8e27345a94c63 (patch) | |
tree | 85688bc267e377077eec2bbd7375582820166098 | |
parent | 512d4ca6a46d9bd4ee4822a90338a0d39a420d7f (diff) | |
parent | c1b2595debc2475728b46c70c7703d4c863b8b95 (diff) | |
download | go-tangerine-f5024b4926ae90c7d5f560deefe8e27345a94c63.tar go-tangerine-f5024b4926ae90c7d5f560deefe8e27345a94c63.tar.gz go-tangerine-f5024b4926ae90c7d5f560deefe8e27345a94c63.tar.bz2 go-tangerine-f5024b4926ae90c7d5f560deefe8e27345a94c63.tar.lz go-tangerine-f5024b4926ae90c7d5f560deefe8e27345a94c63.tar.xz go-tangerine-f5024b4926ae90c7d5f560deefe8e27345a94c63.tar.zst go-tangerine-f5024b4926ae90c7d5f560deefe8e27345a94c63.zip |
Merge pull request #5 from cubedro/debris-error_handling_fix
Debris error handling fix
-rw-r--r-- | lib/main.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/main.js b/lib/main.js index 95581c2be..5655a762e 100644 --- a/lib/main.js +++ b/lib/main.js @@ -223,6 +223,8 @@ // Find termination var str = ""; var i = 0, l = hex.length; + if (hex.substring(0, 2) == '0x') + i = 2; for(; i < l; i+=2) { var code = hex.charCodeAt(i); if(code === 0) { @@ -244,7 +246,8 @@ var hex = this.toHex(str); while(hex.length < pad*2) hex += "00"; - return hex; + + return "0x" + hex; }, eth: { |