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 1e700ef commit c046161Copy full SHA for c046161
src/wrap_js/test/test_bip32.js
@@ -78,7 +78,7 @@ test('BIP32 from seed to address', function(t) {
78
}).then((pubkey) => {
79
return wally.wally_hash160(pubkey);
80
}).then((script) => {
81
- const prefix = Buffer.from('eb', 'hex');
+ const prefix = new Uint8Array([0xeb]);
82
return wally.wally_base58_from_bytes(Buffer.concat([prefix, script]), wally.BASE58_FLAG_CHECKSUM);
83
}).then((address) => {
84
t.equal(
0 commit comments