Skip to content

Commit

Permalink
kitty fix
Browse files Browse the repository at this point in the history
  • Loading branch information
panleone committed Sep 20, 2023
1 parent 8b25f06 commit ac66fcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -476,10 +476,10 @@ export async function generateWallet(noUI = false) {
setDisplayForAllWalletOptions('none');

// Update identicon
doms.domIdenticon.dataset.jdenticonValue = wallet.getAddress();
doms.domIdenticon.dataset.jdenticonValue = await wallet.getAddress();
jdenticon.update('#identicon');

wallet.getNewAddress({ updateGUI: true });
await getNewAddress({ updateGUI: true });

// Refresh the balance UI (why? because it'll also display any 'get some funds!' alerts)
getBalance(true);
Expand Down

0 comments on commit ac66fcd

Please sign in to comment.