Skip to content

Commit

Permalink
Removed (now obsolete) WalletManager.braveWalletRef variable.
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Le Ponner <[email protected]>
  • Loading branch information
ericleponner committed Jan 24, 2024
1 parent 7012fdc commit b0c69d1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/utils/wallet/WalletManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ export class WalletManager {
private readonly walletNameRef = ref(this.activeDriver.name)
private readonly accountIdRef = ref<string|null>(null)
private readonly accountIdsRef = ref<string[]>([])
private readonly braveWalletRef = ref<boolean>(this.activeDriver instanceof WalletDriver_Brave)
private readonly hederaWalletRef = ref<boolean>(this.activeDriver instanceof WalletDriver_Hedera)
private readonly isEthereumWalletRef = ref<boolean>(this.activeDriver instanceof WalletDriver_Ethereum)

Expand All @@ -75,7 +74,6 @@ export class WalletManager {
this.connectedRef.value = false
this.accountIdRef.value = null
this.walletNameRef.value = this.activeDriver.name
this.braveWalletRef.value = this.activeDriver instanceof WalletDriver_Brave
this.hederaWalletRef.value = this.activeDriver instanceof WalletDriver_Hedera
this.isEthereumWalletRef.value = this.activeDriver instanceof WalletDriver_Ethereum
}
Expand Down

0 comments on commit b0c69d1

Please sign in to comment.