Skip to content

Commit

Permalink
Merge pull request #5 from cubedro/debris-error_handling_fix
Browse files Browse the repository at this point in the history
Debris error handling fix
  • Loading branch information
cubedro committed Nov 10, 2014
2 parents 512d4ca + c1b2595 commit f5024b4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -244,7 +246,8 @@
var hex = this.toHex(str);
while(hex.length < pad*2)
hex += "00";
return hex;

return "0x" + hex;
},

eth: {
Expand Down

0 comments on commit f5024b4

Please sign in to comment.