mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
use block_size_limit / 2 for front page
This commit is contained in:
parent
1495626e4a
commit
46c8d5ec1a
1 changed files with 1 additions and 1 deletions
|
@ -734,7 +734,7 @@ namespace xmreg
|
||||||
|
|
||||||
string block_size_limit = fmt::format("{:0.2f}",
|
string block_size_limit = fmt::format("{:0.2f}",
|
||||||
static_cast<double>(
|
static_cast<double>(
|
||||||
current_network_info.block_size_limit)/1024.0);
|
current_network_info.block_size_limit / 2)/1024.0);
|
||||||
|
|
||||||
context["network_info"] = mstch::map {
|
context["network_info"] = mstch::map {
|
||||||
{"difficulty" , current_network_info.difficulty},
|
{"difficulty" , current_network_info.difficulty},
|
||||||
|
|
Loading…
Reference in a new issue