forked from lthn/blockchain
changed var to print
This commit is contained in:
parent
b883aa39f7
commit
521ffa7904
1 changed files with 2 additions and 2 deletions
|
|
@ -2694,13 +2694,13 @@ void blockchain_storage::print_last_n_difficulty_numbers(uint64_t n) const
|
|||
ss << "PoS blocks difficulty:" << ENDL;
|
||||
for (auto& bl_ptr : pos_blocks)
|
||||
{
|
||||
ss << bl_ptr->cumulative_diff_precise << ENDL;
|
||||
ss << bl_ptr->difficulty << ENDL;
|
||||
}
|
||||
|
||||
ss << "PoW blocks difficulty:" << ENDL;
|
||||
for (auto& bl_ptr : pow_blocks)
|
||||
{
|
||||
ss << bl_ptr->cumulative_diff_precise << ENDL;
|
||||
ss << bl_ptr->difficulty << ENDL;
|
||||
}
|
||||
LOG_PRINT_L0("LAST BLOCKS:" << ss.str());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue