aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMarian Oancea <contact@siteshop.ro>2014-11-10 20:07:06 +0800
committerMarian Oancea <contact@siteshop.ro>2014-11-10 20:07:06 +0800
commitc1b2595debc2475728b46c70c7703d4c863b8b95 (patch)
tree85688bc267e377077eec2bbd7375582820166098 /lib
parentc91e4afe6c94b46bb717951bf96fd491ca817d9b (diff)
parent8ca991ecd200d6552a60d47ff4b358e167d41e1e (diff)
downloaddexon-c1b2595debc2475728b46c70c7703d4c863b8b95.tar.gz
dexon-c1b2595debc2475728b46c70c7703d4c863b8b95.tar.zst
dexon-c1b2595debc2475728b46c70c7703d4c863b8b95.zip
fix merge conflicts
Diffstat (limited to 'lib')
-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: {