Added BIP32 support

This commit is contained in:
vub 2013-11-18 23:47:56 -05:00
parent aa22b9d89e
commit 5e2a9f0c26
16 changed files with 546 additions and 313 deletions

View file

@ -7,7 +7,7 @@ var Script = function (data) {
if (!data) {
this.buffer = [];
} else if ("string" == typeof data) {
this.buffer = Crypto.util.hexToBytes(data);
this.buffer = conv.hexToBytes(data);
} else if (util.isArray(data)) {
this.buffer = data;
} else if (data instanceof Script) {