File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -840,7 +840,7 @@ CFeeRate CBlockPolicyEstimator::estimateSmartFee(int confTarget, FeeCalculation
840
840
841
841
// Return failure if trying to analyze a target we're not tracking
842
842
if (confTarget <= 0 || (unsigned int )confTarget > longStats->GetMaxConfirms ()) {
843
- return CFeeRate (0 ); // error conditon
843
+ return CFeeRate (0 ); // error condition
844
844
}
845
845
846
846
// It's not possible to get reasonable estimates for confTarget of 1
@@ -852,7 +852,7 @@ CFeeRate CBlockPolicyEstimator::estimateSmartFee(int confTarget, FeeCalculation
852
852
}
853
853
if (feeCalc) feeCalc->returnedTarget = confTarget;
854
854
855
- if (confTarget <= 1 ) return CFeeRate (0 ); // error conditon
855
+ if (confTarget <= 1 ) return CFeeRate (0 ); // error condition
856
856
857
857
assert (confTarget > 0 ); // estimateCombinedFee and estimateConservativeFee take unsigned ints
858
858
/* * true is passed to estimateCombined fee for target/2 and target so
@@ -899,7 +899,7 @@ CFeeRate CBlockPolicyEstimator::estimateSmartFee(int confTarget, FeeCalculation
899
899
}
900
900
}
901
901
902
- if (median < 0 ) return CFeeRate (0 ); // error conditon
902
+ if (median < 0 ) return CFeeRate (0 ); // error condition
903
903
904
904
return CFeeRate (median);
905
905
}
You can’t perform that action at this time.
0 commit comments