Browse Source

Use Buffer.from

feat-mydojo_upgrade_explorer
Clark Moody 5 years ago
parent
commit
ef3de76336
  1. 6
      accounts/api-helper.js

6
accounts/api-helper.js

@ -28,10 +28,10 @@ class ApiHelper {
*/ */
parseEntities(str) { parseEntities(str) {
const ret = new WalletEntities() const ret = new WalletEntities()
if (typeof str !== 'string') if (typeof str !== 'string')
return ret return ret
for (let item of str.split('|')) { for (let item of str.split('|')) {
try { try {
@ -47,7 +47,7 @@ class ApiHelper {
} else if (addrHelper.isSupportedPubKey(item) && !ret.hasPubKey(item)) { } else if (addrHelper.isSupportedPubKey(item) && !ret.hasPubKey(item)) {
// Derive pubkey as 3 addresses (P1PKH, P2WPKH/P2SH, BECH32) // Derive pubkey as 3 addresses (P1PKH, P2WPKH/P2SH, BECH32)
const bufItem = new Buffer(item, 'hex') const bufItem = Buffer.from(item, 'hex')
const funcs = [ const funcs = [
addrHelper.p2pkhAddress, addrHelper.p2pkhAddress,

Loading…
Cancel
Save