Merge pull request #1 from ralphtheninja/master

remove global (not that it matters but looks prettier in my emacs)
This commit is contained in:
Fedor Indutny 2014-05-14 00:20:35 +04:00
commit 180616494b

View File

@ -90,7 +90,7 @@ utils.fromBase58 = function fromBase58(str) {
for (var i = 0; i < str.length; i++)
if (str[i] !== '1')
break;
zeroes = i;
var zeroes = i;
// Read 4-char words and add them to bignum
var q = 1;