mempool: fix fee estimator inject() method.

This commit is contained in:
Christopher Jeffrey 2017-03-01 15:03:05 -08:00
parent 1085ce6f27
commit 77371fc501
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -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;
};