diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2017-10-13 21:48:00 -0700 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2018-02-09 19:56:10 +1100 |
commit | 6fe57bdaac17d49af9ec7f36c1414d5d2bcec564 (patch) | |
tree | 468056c4529bc345ea568336de7ffd17324f2daa /src/protocol.cpp | |
parent | 31c45a927eaac934fb237433f156907092bf1d11 (diff) |
Connect to peers signaling NODE_NETWORK_LIMITED when out-of-IBD
Diffstat (limited to 'src/protocol.cpp')
-rw-r--r-- | src/protocol.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp index c412ad9ffe..ea78ab6856 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -12,6 +12,8 @@ # include <arpa/inet.h> #endif +std::atomic<bool> g_initial_block_download_completed(false); + namespace NetMsgType { const char *VERSION="version"; const char *VERACK="verack"; |