We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6db48a commit cc26860Copy full SHA for cc26860
rpcclient/errors.go
@@ -411,7 +411,10 @@ var BtcdErrMap = map[string]error{
411
"transaction already exists in blockchain": ErrTxAlreadyConfirmed,
412
413
// A transaction in the mempool.
414
- "already have transaction in mempool": ErrTxAlreadyInMempool,
+ //
415
+ // NOTE: For btcd v0.24.2 and beyond, the error message is "already
416
+ // have transaction in mempool".
417
+ "already have transaction": ErrTxAlreadyInMempool,
418
419
// A transaction with missing inputs, that never existed or only
420
// existed once in the past.
0 commit comments