Merge pull request #6000

641c9cf daemon: add miner tx hash in print_block output (moneromooo-monero)
This commit is contained in:
luigi1111 2019-10-24 10:56:20 -05:00
commit 8926829569
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 2 additions and 1 deletions

View File

@ -98,7 +98,8 @@ namespace {
<< "block weight: " << header.block_weight << std::endl
<< "long term weight: " << header.long_term_weight << std::endl
<< "num txes: " << header.num_txes << std::endl
<< "reward: " << cryptonote::print_money(header.reward);
<< "reward: " << cryptonote::print_money(header.reward) << std::endl
<< "miner tx hash: " << header.miner_tx_hash;
}
std::string get_human_time_ago(time_t t, time_t now)