We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feb5b9a commit e355b7cCopy full SHA for e355b7c
src/wrap_js/test/test_bip32.js
@@ -79,7 +79,7 @@ test('BIP32 from seed to address', function(t) {
79
return wally.wally_hash160(pubkey);
80
}).then((script) => {
81
const prefix = Buffer.from('eb', 'hex');
82
- return wally.wally_base58_from_bytes(Buffer.concat([prefix, new Buffer(script)]), wally.BASE58_FLAG_CHECKSUM);
+ return wally.wally_base58_from_bytes(Buffer.concat([prefix, new Buffer.from(script)]), wally.BASE58_FLAG_CHECKSUM);
83
}).then((address) => {
84
t.equal(
85
address,
0 commit comments