mirror of
https://github.com/monero-project/monero.git
synced 2025-08-09 00:52:23 -04:00
Merge pull request #6268
a6c24412
wallet: fix exceptions getting the hash of a pruned tx (moneromooo-monero)
This commit is contained in:
commit
d500bbe68f
4 changed files with 13 additions and 13 deletions
|
@ -2471,7 +2471,7 @@ namespace tools
|
|||
|
||||
if (req.pool)
|
||||
{
|
||||
std::vector<std::pair<cryptonote::transaction, bool>> process_txs;
|
||||
std::vector<std::tuple<cryptonote::transaction, crypto::hash, bool>> process_txs;
|
||||
m_wallet->update_pool_state(process_txs);
|
||||
if (!process_txs.empty())
|
||||
m_wallet->process_pool_state(process_txs);
|
||||
|
@ -2554,7 +2554,7 @@ namespace tools
|
|||
}
|
||||
}
|
||||
|
||||
std::vector<std::pair<cryptonote::transaction, bool>> process_txs;
|
||||
std::vector<std::tuple<cryptonote::transaction, crypto::hash, bool>> process_txs;
|
||||
m_wallet->update_pool_state(process_txs);
|
||||
if (!process_txs.empty())
|
||||
m_wallet->process_pool_state(process_txs);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue