diff options
author | MarcoFalke <falke.marco@gmail.com> | 2016-11-18 00:15:15 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-11-18 00:23:25 +0100 |
commit | fa7cc5a508921182a4ebf1f9ed296664e5044007 (patch) | |
tree | 9a82f763ac3ac895f8f2a78de73685f0b7895e10 /src | |
parent | 0a6d48d9ed60b0b02177059ab116f8f46d2cbed3 (diff) |
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 21829b6c25..304c4cf1ea 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; |