diff options
| author | Suhas Daftuar <[email protected]> | 2019-01-17 16:50:50 -0500 |
|---|---|---|
| committer | Suhas Daftuar <[email protected]> | 2019-01-22 12:18:45 -0500 |
| commit | a36d97d866e8a11f205d07c624ace7c3d1a2ded8 (patch) | |
| tree | a1baad5b3e19d631367a04469e9a40099c10dac6 /src | |
| parent | Merge #14151: windows: Fix remaining compiler warnings (MSVC) (diff) | |
| download | discoin-a36d97d866e8a11f205d07c624ace7c3d1a2ded8.tar.xz discoin-a36d97d866e8a11f205d07c624ace7c3d1a2ded8.zip | |
Default -whitelistforcerelay to off
Diffstat (limited to 'src')
| -rw-r--r-- | src/validation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.h b/src/validation.h index b5548a929..c0ffc9b0e 100644 --- a/src/validation.h +++ b/src/validation.h @@ -50,7 +50,7 @@ struct LockPoints; /** Default for -whitelistrelay. */ static const bool DEFAULT_WHITELISTRELAY = true; /** Default for -whitelistforcerelay. */ -static const bool DEFAULT_WHITELISTFORCERELAY = true; +static const bool DEFAULT_WHITELISTFORCERELAY = false; /** Default for -minrelaytxfee, minimum relay fee for transactions */ static const unsigned int DEFAULT_MIN_RELAY_TX_FEE = 1000; //! -maxtxfee default |