Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

client/dcr: force cfilters scan for unconfirmed spv txs #2555

Merged
merged 1 commit into from
Oct 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions client/asset/dcr/dcr.go
Original file line number Diff line number Diff line change
Expand Up @@ -3588,6 +3588,14 @@ func (dcr *ExchangeWallet) lookupTxOutput(ctx context.Context, txHash *chainhash
if confs == 0 {
// Only counts as spent if spent in a mined transaction,
// unconfirmed tx outputs can't be spent in a mined tx.

// There is a dcrwallet bug by which the user can shut down at the wrong
// time and a tx will never be marked as confirmed. We'll force a
// cfilter scan for unconfirmed txs until the bug is resolved.
// https://github.com/decred/dcrdex/pull/2444
if dcr.wallet.SpvMode() {
return txOut, confs, -1, nil
}
return txOut, confs, 0, nil
}

Expand Down
Loading