diff options
| author | MarcoFalke <[email protected]> | 2016-11-18 00:15:15 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-11-18 00:23:25 +0100 |
| commit | fa7cc5a508921182a4ebf1f9ed296664e5044007 (patch) | |
| tree | 9a82f763ac3ac895f8f2a78de73685f0b7895e10 /src | |
| parent | Merge #9168: [qa] add assert_raises_message to check specific error message (diff) | |
| download | discoin-fa7cc5a508921182a4ebf1f9ed296664e5044007.tar.xz discoin-fa7cc5a508921182a4ebf1f9ed296664e5044007.zip | |
Set DEFAULT_LIMITFREERELAY = 0 kB/minute
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h index 21829b6c2..304c4cf1e 100644 --- a/src/main.h +++ b/src/main.h @@ -125,7 +125,7 @@ static const int64_t BLOCK_DOWNLOAD_TIMEOUT_BASE = 1000000; /** Additional block download timeout per parallel downloading peer (i.e. 5 min) */ static const int64_t BLOCK_DOWNLOAD_TIMEOUT_PER_PEER = 500000; -static const unsigned int DEFAULT_LIMITFREERELAY = 15; +static const unsigned int DEFAULT_LIMITFREERELAY = 0; static const bool DEFAULT_RELAYPRIORITY = true; static const int64_t DEFAULT_MAX_TIP_AGE = 24 * 60 * 60; |