mirror of
https://github.com/monero-project/monero.git
synced 2024-11-18 00:37:43 +00:00
tx_pool: fix divide by 0 in log
Coverity 205394
This commit is contained in:
parent
cc46f05f1f
commit
174a6ac9c5
1 changed files with 1 additions and 1 deletions
|
@ -324,7 +324,7 @@ namespace cryptonote
|
||||||
|
|
||||||
++m_cookie;
|
++m_cookie;
|
||||||
|
|
||||||
MINFO("Transaction added to pool: txid " << id << " weight: " << tx_weight << " fee/byte: " << (fee / (double)tx_weight));
|
MINFO("Transaction added to pool: txid " << id << " weight: " << tx_weight << " fee/byte: " << (fee / (double)(tx_weight ? tx_weight : 1)));
|
||||||
|
|
||||||
prune(m_txpool_max_weight);
|
prune(m_txpool_max_weight);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue