mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
time delta fixed for first 2 blocks
This commit is contained in:
parent
a661b5b312
commit
ed7b5806d2
1 changed files with 12 additions and 5 deletions
15
src/page.h
15
src/page.h
|
@ -19,7 +19,7 @@
|
||||||
#include "rpccalls.h"
|
#include "rpccalls.h"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
#include <limits>
|
||||||
#include<ctime>
|
#include<ctime>
|
||||||
|
|
||||||
#define TMPL_DIR "./templates"
|
#define TMPL_DIR "./templates"
|
||||||
|
@ -145,7 +145,8 @@ namespace xmreg {
|
||||||
end_height = end_height - start_height > no_of_last_blocks
|
end_height = end_height - start_height > no_of_last_blocks
|
||||||
? no_of_last_blocks : end_height;
|
? no_of_last_blocks : end_height;
|
||||||
|
|
||||||
time_t prev_blk_timestamp {0};
|
// previous blk timestamp, initalised to lowest possible value
|
||||||
|
double prev_blk_timestamp {std::numeric_limits<double>::lowest()};
|
||||||
|
|
||||||
// iterate over last no_of_last_blocks of blocks
|
// iterate over last no_of_last_blocks of blocks
|
||||||
for (uint64_t i = start_height; i <= end_height; ++i)
|
for (uint64_t i = start_height; i <= end_height; ++i)
|
||||||
|
@ -175,7 +176,7 @@ namespace xmreg {
|
||||||
// get time difference [m] between previous and current blocks
|
// get time difference [m] between previous and current blocks
|
||||||
string time_delta_str {};
|
string time_delta_str {};
|
||||||
|
|
||||||
if (prev_blk_timestamp > 0)
|
if (prev_blk_timestamp > std::numeric_limits<double>::lowest())
|
||||||
{
|
{
|
||||||
time_delta_str = fmt::format("{:0.2f}",
|
time_delta_str = fmt::format("{:0.2f}",
|
||||||
(double(blk.timestamp) - double(prev_blk_timestamp))/60.0);
|
(double(blk.timestamp) - double(prev_blk_timestamp))/60.0);
|
||||||
|
@ -244,7 +245,7 @@ namespace xmreg {
|
||||||
});
|
});
|
||||||
|
|
||||||
// save current's block timestamp as reference for the next one
|
// save current's block timestamp as reference for the next one
|
||||||
prev_blk_timestamp = blk.timestamp;
|
prev_blk_timestamp = static_cast<double>(blk.timestamp);
|
||||||
|
|
||||||
} // for (uint64_t i = start_height; i <= end_height; ++i)
|
} // for (uint64_t i = start_height; i <= end_height; ++i)
|
||||||
|
|
||||||
|
@ -252,7 +253,13 @@ namespace xmreg {
|
||||||
// block. This is done so that time delats
|
// block. This is done so that time delats
|
||||||
// are easier to calcualte in the above for loop
|
// are easier to calcualte in the above for loop
|
||||||
std::reverse(blocks.begin(), blocks.end());
|
std::reverse(blocks.begin(), blocks.end());
|
||||||
|
|
||||||
|
// if we look at the genesis time, we should not remove
|
||||||
|
// the last block, i.e. genesis one.
|
||||||
|
if (!(start_height < 2))
|
||||||
|
{
|
||||||
blocks.pop_back();
|
blocks.pop_back();
|
||||||
|
}
|
||||||
|
|
||||||
// get memory pool rendered template
|
// get memory pool rendered template
|
||||||
string mempool_html = mempool();
|
string mempool_html = mempool();
|
||||||
|
|
Loading…
Reference in a new issue