From 3a3392423d07fc28cdb506a4da88be44525c6241 Mon Sep 17 00:00:00 2001 From: Antoni Spaanderman <56turtle56@gmail.com> Date: Sun, 13 Feb 2022 16:13:46 +0100 Subject: [PATCH] set fee_histogram to [] --- backend/src/routes.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/routes.ts b/backend/src/routes.ts index e03eb3a03..9e25f0d35 100644 --- a/backend/src/routes.ts +++ b/backend/src/routes.ts @@ -703,7 +703,8 @@ class Routes { res.json({ count: info.size, vsize: info.bytes, - total_fee: info.total_fee * 1e8 + total_fee: info.total_fee * 1e8, + fee_histogram: [] }); }