diff options
author | w0xlt <woltx@protonmail.com> | 2022-12-26 06:17:05 -0300 |
---|---|---|
committer | w0xlt <woltx@protonmail.com> | 2022-12-26 06:17:05 -0300 |
commit | 55696a0ac30bcfbd555f71cbc8eac23b725f7dcf (patch) | |
tree | 9a57bce5f493e253507eb862117107557db77f2c /src/node | |
parent | bf19069c53501231a2f3ba59afa067913ec4d3b2 (diff) |
wallet: remove `mempool_sequence` from `transactionRemovedFromMempool`
Diffstat (limited to 'src/node')
-rw-r--r-- | src/node/interfaces.cpp | 2 |
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 { |