Skip to content

Commit

Permalink
Do not show optimize tx as unconfirmed
Browse files Browse the repository at this point in the history
  • Loading branch information
n9lsjr committed Dec 1, 2023
1 parent afb8aac commit 9f4ed31
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/routes/wallet/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
});
window.api.receive('incoming-hash', (tx) => {
//If amount is 0, the wallet is optimizing
if (tx.amount === 0) return;
let transaction = {
amount: tx.amount,
hash: tx.hash,
Expand Down

0 comments on commit 9f4ed31

Please sign in to comment.