Skip to content

Commit c5c9df0

Browse files
committed
[Trivial] Fix typos
1 parent a8fa99b commit c5c9df0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/policy/fees.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ void TxConfirmStats::removeTx(unsigned int entryHeight, unsigned int nBestSeenHe
261261
blocksAgo = 0;
262262
if (blocksAgo < 0) {
263263
LogPrint(BCLog::ESTIMATEFEE, "Blockpolicy error, blocks ago is negative for mempool tx\n");
264-
return; //This can't happen becasue we call this with our best seen height, no entries can have higher
264+
return; //This can't happen because we call this with our best seen height, no entries can have higher
265265
}
266266

267267
if (blocksAgo >= (int)unconfTxs.size()) {

src/policy/fees.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class TxConfirmStats
118118
/**
119119
* Initialize the data structures. This is called by BlockPolicyEstimator's
120120
* constructor with default values.
121-
* @param defaultBuckets contains the upper limits for the bucket boundries
121+
* @param defaultBuckets contains the upper limits for the bucket boundaries
122122
* @param maxConfirms max number of confirms to track
123123
* @param decay how much to decay the historical moving average per block
124124
* @param dataTypeString for logging purposes

0 commit comments

Comments
 (0)