From 8a64169f28d7160585acf9cda93b80af285caf48 Mon Sep 17 00:00:00 2001 From: stoffu Date: Fri, 6 Apr 2018 11:50:38 +0900 Subject: [PATCH] Don't use question mark for 0 total fees in empty blocks --- src/page.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/page.h b/src/page.h index fc1ee76..281fc61 100644 --- a/src/page.h +++ b/src/page.h @@ -1253,7 +1253,7 @@ public: // add total fees in the block to the context context["sum_fees"] - = xmreg::xmr_amount_to_str(sum_fees, "{:0.6f}", "0"); + = xmreg::xmr_amount_to_str(sum_fees, "{:0.6f}", false); // get xmr in the block reward context["blk_reward"]