Skip to content

Commit

Permalink
Merge pull request #3414
Browse files Browse the repository at this point in the history
524cbdc blockchain: fix log message about per-kB fee (stoffu)
  • Loading branch information
fluffypony committed Mar 16, 2018
2 parents 2a9839c + 524cbdc commit 432480f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cryptonote_core/blockchain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2982,7 +2982,7 @@ bool Blockchain::check_fee(size_t blob_size, uint64_t fee) const
return false;
fee_per_kb = get_dynamic_per_kb_fee(base_reward, median, version);
}
MDEBUG("Using " << print_money(fee) << "/kB fee");
MDEBUG("Using " << print_money(fee_per_kb) << "/kB fee");

uint64_t needed_fee = blob_size / 1024;
needed_fee += (blob_size % 1024) ? 1 : 0;
Expand Down

0 comments on commit 432480f

Please sign in to comment.