mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 22:58:30 +01:00
Fixing bug where RBF wasn't detected when using bitcoind
This commit is contained in:
parent
f85771e03f
commit
b15de021f7
1 changed files with 1 additions and 1 deletions
|
@ -358,7 +358,7 @@ class WebsocketHandler {
|
|||
const rbfTx = rbfTransactions[rbfTransaction];
|
||||
if (config.MEMPOOL.BACKEND !== 'esplora') {
|
||||
try {
|
||||
const fullTx = await transactionUtils.$getTransactionExtended(rbfTransaction, true);
|
||||
const fullTx = await transactionUtils.$getTransactionExtended(rbfTx.txid, true);
|
||||
response['rbfTransaction'] = fullTx;
|
||||
} catch (e) {
|
||||
logger.debug('Error finding transaction in mempool: ' + (e instanceof Error ? e.message : e));
|
||||
|
|
Loading…
Add table
Reference in a new issue