set fee_histogram to []

This commit is contained in:
Antoni Spaanderman 2022-02-13 16:13:46 +01:00
parent 8902107663
commit 7a44705ef1

View File

@ -703,7 +703,8 @@ class Routes {
res.json({ res.json({
count: info.size, count: info.size,
vsize: info.bytes, vsize: info.bytes,
total_fee: info.total_fee * 1e8 total_fee: info.total_fee * 1e8,
fee_histogram: []
}); });
} }