Skip to content

Commit

Permalink
only check generic network type
Browse files Browse the repository at this point in the history
  • Loading branch information
escottalexander committed Apr 4, 2024
1 parent 933979f commit 9865738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bitcore-wallet-service/src/lib/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1827,7 +1827,7 @@ export class WalletService implements IWalletService {
} catch (ex) {
return cb(null, []);
}
if (addrObj.network.name != wallet.network) {
if (addrObj.network.name != Utils.getGenericName(wallet.network)) {
return cb(null, []);
}

Expand Down

0 comments on commit 9865738

Please sign in to comment.