mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 10:37:37 -07:00
Merge pull request #6028
174a6ac
tx_pool: fix divide by 0 in log (moneromooo-monero)
This commit is contained in:
commit
86d085e988
@ -324,7 +324,7 @@ namespace cryptonote
|
||||
|
||||
++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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user