Browse Source

Use Buffer.from

umbrel
Clark Moody 6 years ago
parent
commit
ef3de76336
  1. 2
      accounts/api-helper.js

2
accounts/api-helper.js

@ -47,7 +47,7 @@ class ApiHelper {
} else if (addrHelper.isSupportedPubKey(item) && !ret.hasPubKey(item)) {
// Derive pubkey as 3 addresses (P1PKH, P2WPKH/P2SH, BECH32)
const bufItem = new Buffer(item, 'hex')
const bufItem = Buffer.from(item, 'hex')
const funcs = [
addrHelper.p2pkhAddress,

Loading…
Cancel
Save