Skip to content

Commit 5bbcc10

Browse files
chore(statics): changed field name for interface for pubkey
TICKET: BTC-2116
1 parent 5bca58c commit 5bbcc10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/statics/src/networks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export abstract class BaseNetwork {
1515
export interface UtxoNetwork extends BaseNetwork {
1616
// Network name as defined in @bitgo/utxo-lib networks.ts
1717
utxolibName: string;
18-
pubkey?: string;
18+
paygoAddressAttestationPubkey?: string;
1919
}
2020

2121
export interface LightningNetwork extends UtxoNetwork {
@@ -344,7 +344,7 @@ class BitcoinTestnet extends Testnet implements UtxoNetwork {
344344
utxolibName = 'testnet';
345345
explorerUrl = 'https://mempool.space/testnet/tx/';
346346
// Add our pubkey for our paygo wallet
347-
pubkey =
347+
paygoAddressAttestationPubkey =
348348
'xpub661MyMwAqRbcFU2Qx7pvGmmiQpVj8NcR7dSVpgqNChMkQyobpVWWERcrTb47WicmXwkhAY2VrC3hb29s18FDQWJf5pLm3saN6uLXAXpw1GV';
349349
}
350350

0 commit comments

Comments
 (0)