mirror of
https://github.com/monero-project/monero.git
synced 2025-12-23 07:29:11 -08:00
Move txpool to the database
Integration could go further (ie, return_tx_to_pool calls should not be needed anymore, possibly other things). poolstate.bin is now obsolete.
This commit is contained in:
@@ -443,7 +443,7 @@ int import_from_file(FakeCore& simple_core, const std::string& import_file_path,
|
||||
// tx number 1: coinbase tx
|
||||
// tx number 2 onwards: archived_txs
|
||||
unsigned int tx_num = 1;
|
||||
for (const transaction& tx : archived_txs)
|
||||
for (transaction tx : archived_txs)
|
||||
{
|
||||
++tx_num;
|
||||
// if tx is invalid
|
||||
|
||||
Reference in New Issue
Block a user