From 200e68f15ad420f7a9557dbe054fb5e9fa15942c Mon Sep 17 00:00:00 2001 From: softsimon Date: Thu, 29 Oct 2020 07:06:54 +0700 Subject: [PATCH] Fix: Wrong variable used to display mempool size. --- frontend/src/app/dashboard/dashboard.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/dashboard/dashboard.component.html b/frontend/src/app/dashboard/dashboard.component.html index 5faf10b40..98e29b234 100644 --- a/frontend/src/app/dashboard/dashboard.component.html +++ b/frontend/src/app/dashboard/dashboard.component.html @@ -155,7 +155,7 @@
Mempool size

- {{ mempoolBlocksData.size | bytes }} ({{ mempoolBlocksData.blocks }} blocks) + {{ mempoolInfoData.value.memPoolInfo.bytes | bytes }} ({{ mempoolBlocksData.blocks }} blocks)