Skip to content

Commit

Permalink
fix(wallet): Consider tx_hash when combining utxos
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyphillips committed Feb 21, 2024
1 parent fe8905d commit 8fbae1c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/screens/Wallets/Send/CoinSelection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ const CoinSelection = ({
(item) =>
item.index === current.index &&
item.tx_pos === current.tx_pos &&
item.value === current.value,
item.value === current.value &&
item.tx_hash === current.tx_hash,
);
if (!x) {
return acc.concat([current]);
Expand Down

0 comments on commit 8fbae1c

Please sign in to comment.