From 345e37420b35ca7f2a4ffd16c916d1173fa97013 Mon Sep 17 00:00:00 2001 From: Dan Janosik Date: Fri, 1 Jun 2018 13:05:23 -0400 Subject: [PATCH] fix a little "whoops" --- app/rpcApi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/rpcApi.js b/app/rpcApi.js index 236175d..018baf7 100644 --- a/app/rpcApi.js +++ b/app/rpcApi.js @@ -176,7 +176,7 @@ function getMempoolStats() { } summary["averageFee"] = summary["totalFees"] / summary["count"]; - summary["averageFeePerByte"] = summary["totalFees"] / summary["totalBytes"] / summary["count"]; + summary["averageFeePerByte"] = summary["totalFees"] / summary["totalBytes"]; summary["satoshiPerByteBucketMaxima"] = satoshiPerByteBucketMaxima; summary["satoshiPerByteBucketCounts"] = [];