Skip to content

Commit

Permalink
Improve synchronizing beekeeper wallets from list wallets
Browse files Browse the repository at this point in the history
  • Loading branch information
mtyszczak authored and vogel76 committed Dec 7, 2023
1 parent 785aa74 commit 7a45f1a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions programs/beekeeper/beekeeper_wasm/src/detailed/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ export class BeekeeperSession implements IBeekeeperSession {
for(const value of result.wallets) {
const wallet = this.openWallet(value.name);

if(!value.unlocked)
(wallet as BeekeeperLockedWallet).unlocked = undefined;

wallets.push(wallet);
}

Expand Down

0 comments on commit 7a45f1a

Please sign in to comment.