Skip to content

Commit 23517da

Browse files
committed
fix
1 parent 0f61a24 commit 23517da

File tree

1 file changed

+2
-1
lines changed
  • packages/yoroi-extension/app/UI/features/airdrop/useCases

1 file changed

+2
-1
lines changed

packages/yoroi-extension/app/UI/features/airdrop/useCases/Redeem.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ export default function Redeem(props: {
2626
// we just submitted the re-org tx, wait for it to be confirmed
2727
if (reorgTxId) {
2828
for (;;) {
29-
if (props.wallet.utxos.find(utxo => utxo.output.Transaction.Hash === reorgTxId)) {
29+
// HACK
30+
if (yoroi.stores.wallets.selected.utxos.find(utxo => utxo.output.Transaction.Hash === reorgTxId)) {
3031
break;
3132
}
3233
await new Promise(resolve => setTimeout(resolve, 10*1000));

0 commit comments

Comments
 (0)