mirror of
https://github.com/monero-project/monero.git
synced 2024-11-18 00:37:43 +00:00
tx_pool: fix error message assuming incorrectly
This commit is contained in:
parent
4c9fd8d86d
commit
c96b7ee619
1 changed files with 2 additions and 2 deletions
|
@ -264,7 +264,7 @@ namespace cryptonote
|
||||||
}
|
}
|
||||||
catch (const std::exception &e)
|
catch (const std::exception &e)
|
||||||
{
|
{
|
||||||
MERROR("transaction already exists at inserting in memory pool: " << e.what());
|
MERROR("Error adding transaction to txpool: " << e.what());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
tvc.m_verifivation_impossible = true;
|
tvc.m_verifivation_impossible = true;
|
||||||
|
@ -310,7 +310,7 @@ namespace cryptonote
|
||||||
}
|
}
|
||||||
catch (const std::exception &e)
|
catch (const std::exception &e)
|
||||||
{
|
{
|
||||||
MERROR("internal error: transaction already exists at inserting in memory pool: " << e.what());
|
MERROR("internal error: error adding transaction to txpool: " << e.what());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
tvc.m_added_to_pool = true;
|
tvc.m_added_to_pool = true;
|
||||||
|
|
Loading…
Reference in a new issue