Added BIP32 support
This commit is contained in:
parent
aa22b9d89e
commit
5e2a9f0c26
16 changed files with 546 additions and 313 deletions
src
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue