aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarian OANCΞA <contact@siteshop.ro>2014-11-10 20:09:21 +0800
committerMarian OANCΞA <contact@siteshop.ro>2014-11-10 20:09:21 +0800
commitf5024b4926ae90c7d5f560deefe8e27345a94c63 (patch)
tree85688bc267e377077eec2bbd7375582820166098
parent512d4ca6a46d9bd4ee4822a90338a0d39a420d7f (diff)
parentc1b2595debc2475728b46c70c7703d4c863b8b95 (diff)
downloaddexon-f5024b4926ae90c7d5f560deefe8e27345a94c63.tar.gz
dexon-f5024b4926ae90c7d5f560deefe8e27345a94c63.tar.zst
dexon-f5024b4926ae90c7d5f560deefe8e27345a94c63.zip
Merge pull request #5 from cubedro/debris-error_handling_fix
Debris error handling fix
-rw-r--r--lib/main.js5
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: {