Skip to content

Commit b40ceed

Browse files
committed
Merge #10419: [trivial] Fix three recently introduced typos
efc2e33 [trivial] Fix three recently introduced typos (practicalswift) Tree-SHA512: 99e97f3c1350299dfce9c0c35547d480f25c0b877da311d9120f113afd3089eda31b88b2378e2370f288b0c41bb69cee0fd3abca661cd93d5a56982f90709f91
2 parents 4314544 + efc2e33 commit b40ceed

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/policy/fees.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ CFeeRate CBlockPolicyEstimator::estimateSmartFee(int confTarget, int *answerFoun
786786
* This is necessary to preserve monotonically increasing estimates.
787787
* For non-conservative estimates we do the same thing for 2*target, but
788788
* for conservative estimates we want to skip these shorter horizons
789-
* checks for 2*target becuase we are taking the max over all time
789+
* checks for 2*target because we are taking the max over all time
790790
* horizons so we already have monotonically increasing estimates and
791791
* the purpose of conservative estimates is not to let short term
792792
* fluctuations lower our estimates by too much.

src/policy/fees.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class TxConfirmStats;
5151
* blocks. This is is tracked in 3 different data sets each up to a maximum
5252
* number of periods. Within each data set we have an array of counters in each
5353
* feerate bucket and we increment all the counters from Y' up to max periods
54-
* representing that a tx was successfullly confirmed in less than or equal to
54+
* representing that a tx was successfully confirmed in less than or equal to
5555
* that many periods. We want to save a history of this information, so at any
5656
* time we have a counter of the total number of transactions that happened in a
5757
* given feerate bucket and the total number that were confirmed in each of the

src/wallet/feebumper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ bool CFeeBumper::commit(CWallet *pWallet)
255255
}
256256
CWalletTx& oldWtx = pWallet->mapWallet[txid];
257257

258-
// make sure the transaction still has no descendants and hasen't been mined in the meantime
258+
// make sure the transaction still has no descendants and hasn't been mined in the meantime
259259
if (!preconditionChecks(pWallet, oldWtx)) {
260260
return false;
261261
}

0 commit comments

Comments
 (0)