Reduce lower limit of tx per block seen at a certain fee rate, so estimates are produced sooner (#14291)

Reduce lower limit of tx per block seen at a certain fee rate, so that we produce estimates sooner
This commit is contained in:
Adam Kelly 2023-01-09 13:30:14 -08:00 committed by GitHub
parent b6596f9a9f
commit c7597a1e82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,9 @@ LONG_DECAY = 0.99931
HALF_SUCCESS_PCT = 0.6 # Require 60 % success rate for target confirmations
SUCCESS_PCT = 0.85 # Require 85 % success rate for target confirmations
DOUBLE_SUCCESS_PCT = 0.95 # Require 95 % success rate for target confirmations
SUFFICIENT_FEE_TXS = 0.1 # Require an avg of 0.1 tx in the combined fee rate bucket per block to have stat significance
# Require an avg of SUFFICIENT_FEE_TXS tx in the combined fee rate bucket per block to have stat. significance
SUFFICIENT_FEE_TXS = 0.01
FEE_ESTIMATOR_VERSION = 1