Browse Source

fix a little "whoops"

fix-133-memory-crash
Dan Janosik 7 years ago
parent
commit
345e37420b
  1. 2
      app/rpcApi.js

2
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"] = [];

Loading…
Cancel
Save