1
0
Fork 0
forked from lthn/blockchain

changed var to print

This commit is contained in:
cryptozoidberg 2019-08-08 17:51:30 +02:00
parent b883aa39f7
commit 521ffa7904
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -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());
}