mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
timestamp added to blocks
This commit is contained in:
parent
c23213cd89
commit
e710234fcb
3 changed files with 22 additions and 20 deletions
38
src/page.h
38
src/page.h
|
@ -755,25 +755,27 @@ namespace xmreg {
|
||||||
|
|
||||||
// initalise page tempate map with basic info about blockchain
|
// initalise page tempate map with basic info about blockchain
|
||||||
mstch::map context {
|
mstch::map context {
|
||||||
{"blk_hash" , blk_hash_str},
|
{"blk_hash" , blk_hash_str},
|
||||||
{"blk_height" , _blk_height},
|
{"blk_height" , _blk_height},
|
||||||
{"blk_timestamp" , blk_timestamp},
|
{"blk_timestamp" , blk_timestamp},
|
||||||
{"prev_hash" , prev_hash_str},
|
{"blk_timestamp_epoch" , blk.timestamp},
|
||||||
{"next_hash" , next_hash_str},
|
{"prev_hash" , prev_hash_str},
|
||||||
{"have_next_hash" , have_next_hash},
|
{"next_hash" , next_hash_str},
|
||||||
{"have_prev_hash" , have_prev_hash},
|
{"have_next_hash" , have_next_hash},
|
||||||
{"have_txs" , have_txs},
|
{"have_prev_hash" , have_prev_hash},
|
||||||
{"no_txs" , std::to_string(blk.tx_hashes.size())},
|
{"have_txs" , have_txs},
|
||||||
{"blk_age" , age.first},
|
{"no_txs" , std::to_string(
|
||||||
{"delta_time" , delta_time},
|
blk.tx_hashes.size())},
|
||||||
{"blk_nonce" , blk.nonce},
|
{"blk_age" , age.first},
|
||||||
{"age_format" , age.second},
|
{"delta_time" , delta_time},
|
||||||
{"major_ver" , std::to_string(blk.major_version)},
|
{"blk_nonce" , blk.nonce},
|
||||||
{"minor_ver" , std::to_string(blk.minor_version)},
|
{"age_format" , age.second},
|
||||||
{"blk_size" , fmt::format("{:0.4f}",
|
{"major_ver" , std::to_string(blk.major_version)},
|
||||||
|
{"minor_ver" , std::to_string(blk.minor_version)},
|
||||||
|
{"blk_size" , fmt::format("{:0.4f}",
|
||||||
static_cast<double>(blk_size) / 1024.0)},
|
static_cast<double>(blk_size) / 1024.0)},
|
||||||
{"coinbase_txs" , mstch::array{{txd_coinbase.get_mstch_map()}}},
|
{"coinbase_txs" , mstch::array{{txd_coinbase.get_mstch_map()}}},
|
||||||
{"blk_txs" , mstch::array()}
|
{"blk_txs" , mstch::array()}
|
||||||
};
|
};
|
||||||
|
|
||||||
// .push_back(txd_coinbase.get_mstch_map()
|
// .push_back(txd_coinbase.get_mstch_map()
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
<table class="center">
|
<table class="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td>Timestamp [UCT]:</td><td>{{blk_timestamp}}</td>
|
<td>Timestamp [UCT] (epoch):</td><td>{{blk_timestamp}} ({{blk_timestamp_epoch}})</td>
|
||||||
<td>Age {{age_format}}:</td><td>{{blk_age}}</td>
|
<td>Age {{age_format}}:</td><td>{{blk_age}}</td>
|
||||||
<td>Δ [h:m:s]:</td><td>{{delta_time}}</td>
|
<td>Δ [h:m:s]:</td><td>{{delta_time}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -611,7 +611,7 @@ namespace xmreg
|
||||||
|
|
||||||
uint64_t timestamp_place = double(timestamp-time0)
|
uint64_t timestamp_place = double(timestamp-time0)
|
||||||
/ double(interval_length)*(time_axis_length-1);
|
/ double(interval_length)*(time_axis_length-1);
|
||||||
//cout << timestamp_place << endl;
|
|
||||||
empty_time[timestamp_place + 1] = '*';
|
empty_time[timestamp_place + 1] = '*';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue