Skip to content

Commit

Permalink
wallet: fix error match pattern for missing-inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
yyforyongyu committed Jan 15, 2024
1 parent 36e41df commit 2ab8105
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions wallet/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -4129,9 +4129,8 @@ func MapBroadcastBackendError(err error) error {
// Returned by bitcoind on the RPC when broadcasting a transaction that
// is spending either output that is missing or already spent.
//
// https://github.com/bitcoin/bitcoin/blob/9bf5768dd628b3a7c30dd42b5ed477a92c4d3540/src/node/transaction.cpp#L49
// https://github.com/bitcoin/bitcoin/blob/0.20/src/validation.cpp#L642
case match(err, "missing inputs") ||
// https://github.com/bitcoin/bitcoin/blob/3ba8de1b704d590fa4e1975620bd21d830d11666/test/functional/mempool_accept.py#L163C1-L163C1
case match(err, "missing-inputs") ||
match(err, "bad-txns-inputs-missingorspent"):

returnErr = &ErrDoubleSpend{
Expand Down

0 comments on commit 2ab8105

Please sign in to comment.