Show all Monero block rewards in log

This commit is contained in:
SChernykh
2021-09-01 10:43:10 +02:00
parent 75843e9b37
commit 5d6fa03f11
5 changed files with 39 additions and 16 deletions

View File

@@ -254,10 +254,11 @@ struct MinerData
struct ChainMain
{
FORCEINLINE ChainMain() : height(0), timestamp(0), id() {}
FORCEINLINE ChainMain() : height(0), timestamp(0), reward(0), id() {}
uint64_t height;
uint64_t timestamp;
uint64_t reward;
hash id;
};