wallet: remove mempool_sequence from transactionRemovedFromMempool

This commit is contained in:
w0xlt
2022-12-26 06:17:05 -03:00
parent bf19069c53
commit 55696a0ac3
4 changed files with 5 additions and 5 deletions

View File

@@ -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
{