typo in error message

This commit is contained in:
Ryan X. Charles 2014-08-24 14:31:30 -07:00
parent 76e8136b45
commit f3dcb5bba1
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ BIP32.prototype.toString = function() {
function uint(f, size) {
if (f.length < size)
throw new Error('gcnot enough data');
throw new Error('not enough data');
var n = 0;
for (var i = 0; i < size; i++) {
n *= 256;