diff options
| author | MarcoFalke <[email protected]> | 2015-11-09 19:16:38 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2015-11-28 19:01:11 +0100 |
| commit | faf93f37fe47fe326fcc4955302a66f24eb13b65 (patch) | |
| tree | a1f2ed7942c30233341f58f85cff6eaf2e14cb5e /src/main.cpp | |
| parent | Bugfix: Omit wallet-related options from -help when wallet is not supported (diff) | |
| download | discoin-faf93f37fe47fe326fcc4955302a66f24eb13b65.tar.xz discoin-faf93f37fe47fe326fcc4955302a66f24eb13b65.zip | |
[trivial] Reuse translation and cleanup DEFAULT_* values
* DEFAULT_DISABLE_SAFEMODE = false
* Use DEFAULT_* constants for extern bools
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 2c43d21f8..6b6840ce8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -66,10 +66,10 @@ bool fReindex = false; bool fTxIndex = false; bool fHavePruned = false; bool fPruneMode = false; -bool fIsBareMultisigStd = true; +bool fIsBareMultisigStd = DEFAULT_PERMIT_BAREMULTISIG; bool fRequireStandard = true; bool fCheckBlockIndex = false; -bool fCheckpointsEnabled = true; +bool fCheckpointsEnabled = DEFAULT_CHECKPOINTS_ENABLED; size_t nCoinCacheUsage = 5000 * 300; uint64_t nPruneTarget = 0; bool fAlerts = DEFAULT_ALERTS; |