diff options
author | Chris Wheeler <chris@haydenwheeler.com> | 2016-01-17 11:03:56 +0000 |
---|---|---|
committer | Chris Wheeler <chris@haydenwheeler.com> | 2016-01-17 11:03:56 +0000 |
commit | 9d263bd17c2bdd5ba9e31bd5fb110c332eb80691 (patch) | |
tree | e52d90fb446cd0039d2f39b707fe549a89234371 /src/policy/fees.cpp | |
parent | dd1304ec216c7d4bdb302195e184b15503819f67 (diff) |
Typo fixes in comments
Diffstat (limited to 'src/policy/fees.cpp')
-rw-r--r-- | src/policy/fees.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/fees.cpp b/src/policy/fees.cpp index 980ecf10df..de3c060d6a 100644 --- a/src/policy/fees.cpp +++ b/src/policy/fees.cpp @@ -87,7 +87,7 @@ double TxConfirmStats::EstimateMedianVal(int confTarget, double sufficientTxVal, int maxbucketindex = buckets.size() - 1; // requireGreater means we are looking for the lowest fee/priority such that all higher - // values pass, so we start at maxbucketindex (highest fee) and look at succesively + // values pass, so we start at maxbucketindex (highest fee) and look at successively // smaller buckets until we reach failure. Otherwise, we are looking for the highest // fee/priority such that all lower values fail, and we go in the opposite direction. unsigned int startbucket = requireGreater ? maxbucketindex : 0; |