Merge pull request #1254

eb4ecd4 daemon: fix min/max tracking using the wrong size (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2016-10-29 11:23:08 +02:00
commit 6a303b9a3a
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 4 additions and 4 deletions

View File

@ -859,10 +859,10 @@ bool t_rpc_command_executor::print_transaction_pool_stats() {
for (const auto &tx_info: res.transactions)
{
bytes += tx_info.blob_size;
if (min_bytes == 0 || bytes < min_bytes)
min_bytes = bytes;
if (bytes > max_bytes)
max_bytes = bytes;
if (min_bytes == 0 || tx_info.blob_size < min_bytes)
min_bytes = tx_info.blob_size;
if (tx_info.blob_size > max_bytes)
max_bytes = tx_info.blob_size;
if (!tx_info.relayed)
n_not_relayed++;
fee += tx_info.fee;