diff options
| author | practicalswift <[email protected]> | 2017-02-06 15:16:18 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-02-14 20:19:40 +0100 |
| commit | 0c9b9b7d646333cb3212f1bea98e629c416cbe42 (patch) | |
| tree | 1367ac5ad5c472b827962e95046aef1cecf2f102 /src/init.cpp | |
| parent | Merge #9378: [trivial] Add documentation for CWalletTx::fFromMe member. (diff) | |
| download | discoin-0c9b9b7d646333cb3212f1bea98e629c416cbe42.tar.xz discoin-0c9b9b7d646333cb3212f1bea98e629c416cbe42.zip | |
[trivial] Fix recently introduced typos in comments
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 7c108ac4a..cf265180f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -934,7 +934,7 @@ bool AppInitParameterInteraction() int64_t nMempoolSizeMin = GetArg("-limitdescendantsize", DEFAULT_DESCENDANT_SIZE_LIMIT) * 1000 * 40; if (nMempoolSizeMax < 0 || nMempoolSizeMax < nMempoolSizeMin) return InitError(strprintf(_("-maxmempool must be at least %d MB"), std::ceil(nMempoolSizeMin / 1000000.0))); - // incremental relay fee sets the minimimum feerate increase necessary for BIP 125 replacement in the mempool + // incremental relay fee sets the minimum feerate increase necessary for BIP 125 replacement in the mempool // and the amount the mempool min fee increases above the feerate of txs evicted due to mempool limiting. if (IsArgSet("-incrementalrelayfee")) { |