diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-06-24 10:11:18 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-06-24 10:16:32 +0200 |
| commit | 8c841a31a91ffe7e449c4733d14664b79cb39378 (patch) | |
| tree | 2ffff29482272c1ee577c5500a32ab9c557f9534 /src/init.cpp | |
| parent | Merge #10644: Slightly overhaul NSI pixmaps (diff) | |
| parent | doc: Remove outdated minrelaytxfee comment (diff) | |
| download | discoin-8c841a31a91ffe7e449c4733d14664b79cb39378.tar.xz discoin-8c841a31a91ffe7e449c4733d14664b79cb39378.zip | |
Merge #10626: doc: Remove outdated minrelaytxfee comment
fab9b60 doc: Remove outdated minrelaytxfee comment (MarcoFalke)
Tree-SHA512: e36c5a554a9773f034c2d358c52a772688009a5a71dfd3f664d9b5566c98378f44ef7c6dc0902b42d69ab5fd54b60d4850a2903823d0b2309c7ae063d1923f7f
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/init.cpp b/src/init.cpp index e21395889..686a31b0f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1028,14 +1028,7 @@ bool AppInitParameterInteraction() if (nConnectTimeout <= 0) nConnectTimeout = DEFAULT_CONNECT_TIMEOUT; - // Fee-per-kilobyte amount required for mempool acceptance and relay - // If you are mining, be careful setting this: - // if you set it to zero then - // a transaction spammer can cheaply fill blocks using - // 0-fee transactions. It should be set above the real - // cost to you of processing a transaction. - if (IsArgSet("-minrelaytxfee")) - { + if (IsArgSet("-minrelaytxfee")) { CAmount n = 0; if (!ParseMoney(GetArg("-minrelaytxfee", ""), n)) { return InitError(AmountErrMsg("minrelaytxfee", GetArg("-minrelaytxfee", ""))); |