mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-04 04:13:49 +01:00
fix: private variable name
This commit is contained in:
parent
cdff97814f
commit
50c5ce1cd8
1 changed files with 3 additions and 3 deletions
|
@ -55,7 +55,7 @@ export class AbstractHDElectrumWallet extends AbstractHDWallet {
|
|||
next_free_payment_code_address_index: Record<string, number>;
|
||||
_txs_by_payment_code_index: Record<string, Transaction[][]>;
|
||||
_balances_by_payment_code_index: Record<string, BalanceByIndex>;
|
||||
bip47_instance?: BIP47Interface;
|
||||
_bip47_instance?: BIP47Interface;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
|
@ -1470,8 +1470,8 @@ export class AbstractHDElectrumWallet extends AbstractHDWallet {
|
|||
}
|
||||
|
||||
getBIP47FromSeed(): BIP47Interface {
|
||||
if (!this.bip47_instance) this.bip47_instance = bip47.fromBip39Seed(this.secret, undefined, this.passphrase);
|
||||
return this.bip47_instance;
|
||||
if (!this._bip47_instance) this._bip47_instance = bip47.fromBip39Seed(this.secret, undefined, this.passphrase);
|
||||
return this._bip47_instance;
|
||||
}
|
||||
|
||||
setBIP47PaymentCode(): void {
|
||||
|
|
Loading…
Add table
Reference in a new issue