diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2016-06-13 16:01:21 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2016-06-13 17:40:16 +0200 |
commit | ecd7fd37c888f8ebc64cf3d92272975b37ae54ca (patch) | |
tree | f965abcecc43584d8f9f9a42629df169fdcc249e /src/net.h | |
parent | ee06e04369c37da21e048fda849cce2a1f066f84 (diff) |
Introduce REQUIRED_SERVICES constant
Diffstat (limited to 'src/net.h')
-rw-r--r-- | src/net.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -72,6 +72,8 @@ static const bool DEFAULT_FORCEDNSSEED = false; static const size_t DEFAULT_MAXRECEIVEBUFFER = 5 * 1000; static const size_t DEFAULT_MAXSENDBUFFER = 1 * 1000; +static const ServiceFlags REQUIRED_SERVICES = NODE_NETWORK; + // NOTE: When adjusting this, update rpcnet:setban's help ("24h") static const unsigned int DEFAULT_MISBEHAVING_BANTIME = 60 * 60 * 24; // Default 24-hour ban |