From 9beb592bae49a156de8370a23bdde981ad2a93cf Mon Sep 17 00:00:00 2001 From: devhyper <57877914+devhyper@users.noreply.github.com> Date: Tue, 30 May 2023 15:59:18 -0700 Subject: [PATCH] Fixes --- pages/MiningStats.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pages/MiningStats.qml b/pages/MiningStats.qml index 2feba88bc6..8a0ea5e817 100644 --- a/pages/MiningStats.qml +++ b/pages/MiningStats.qml @@ -79,8 +79,9 @@ Rectangle { var statsData = [ {"key": "Main chain height:", "value": statsMap["height"]}, {"key": "Side chain height:", "value": pool_statistics["sidechainHeight"]}, - {"key": "PPLNS window:", "value": pool_statistics["pplnsWeight"] + " blocks"}, + {"key": "PPLNS window:", "value": pool_statistics["pplnsWindowSize"] + " blocks"}, {"key": "Block reward share", "value": statsMap["block_reward_share_percent"]}, + {"key": "Connections: ", "value": statsMap["connections"]}, {"key": "Peer list size: ", "value": statsMap["peer_list_size"]}, {"key": "Uptime: ", "value": statsMap["uptime"]}