From 77371fc50121e132bf54d0cd8ebdfd3fe0792e39 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Wed, 1 Mar 2017 15:03:05 -0800 Subject: [PATCH] mempool: fix fee estimator `inject()` method. --- lib/mempool/fees.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/mempool/fees.js b/lib/mempool/fees.js index ad823a95..56ffb6b0 100644 --- a/lib/mempool/fees.js +++ b/lib/mempool/fees.js @@ -866,7 +866,6 @@ PolicyEstimator.fromRaw = function fromRaw(data, logger) { PolicyEstimator.prototype.inject = function inject(estimator) { this.bestHeight = estimator.bestHeight; this.feeStats = estimator.feeStats; - this.priStats = estimator.priStats; return this; };