aboutsummaryrefslogtreecommitdiff
path: root/src/node
diff options
context:
space:
mode:
authorw0xlt <woltx@protonmail.com>2022-12-26 06:17:05 -0300
committerw0xlt <woltx@protonmail.com>2022-12-26 06:17:05 -0300
commit55696a0ac30bcfbd555f71cbc8eac23b725f7dcf (patch)
tree9a57bce5f493e253507eb862117107557db77f2c /src/node
parentbf19069c53501231a2f3ba59afa067913ec4d3b2 (diff)
wallet: remove `mempool_sequence` from `transactionRemovedFromMempool`
Diffstat (limited to 'src/node')
-rw-r--r--src/node/interfaces.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/interfaces.cpp b/src/node/interfaces.cpp
index bc4e0ce110..a693c8054c 100644
--- a/src/node/interfaces.cpp
+++ b/src/node/interfaces.cpp
@@ -424,7 +424,7 @@ public:
}
void TransactionRemovedFromMempool(const CTransactionRef& tx, MemPoolRemovalReason reason, uint64_t mempool_sequence) override
{
- m_notifications->transactionRemovedFromMempool(tx, reason, mempool_sequence);
+ m_notifications->transactionRemovedFromMempool(tx, reason);
}
void BlockConnected(const std::shared_ptr<const CBlock>& block, const CBlockIndex* index) override
{