diff options
| author | Patick Strateman <[email protected]> | 2015-11-14 05:14:01 -0800 |
|---|---|---|
| committer | Patick Strateman <[email protected]> | 2015-11-14 05:14:01 -0800 |
| commit | bbf49da408a609a4ca9ed4028fa3071dc6e77233 (patch) | |
| tree | 9b97b601a25f7a64ba06985eb7ca844fd540ecf7 /src/init.cpp | |
| parent | Fix fRelayTxs comment (diff) | |
| download | discoin-bbf49da408a609a4ca9ed4028fa3071dc6e77233.tar.xz discoin-bbf49da408a609a4ca9ed4028fa3071dc6e77233.zip | |
Fix comment for blocksonly parameter interactions
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 3a4312ec0..36c1dfbe8 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -820,7 +820,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) #endif } - // disable walletbroadcast in blocksonly mode + // disable walletbroadcast and whitelistalwaysrelay in blocksonly mode if (GetBoolArg("-blocksonly", DEFAULT_BLOCKSONLY)) { if (SoftSetBoolArg("-whitelistalwaysrelay", false)) LogPrintf("%s: parameter interaction: -blocksonly=1 -> setting -whitelistalwaysrelay=0\n", __func__); |