From f3dcb5bba18efef9347ff81807b38668961ccb09 Mon Sep 17 00:00:00 2001 From: "Ryan X. Charles" Date: Sun, 24 Aug 2014 14:31:30 -0700 Subject: [PATCH] typo in error message --- lib/bip32.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bip32.js b/lib/bip32.js index 953fa57..4e84fff 100644 --- a/lib/bip32.js +++ b/lib/bip32.js @@ -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;