diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-09-08 17:03:23 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-09-08 17:10:36 +0200 |
| commit | 0c2779514041b174c13d7cd3a66f1fd28e9026fa (patch) | |
| tree | d22549d3a50e3002c8f1c94910f45325cf9ea617 /src/init.cpp | |
| parent | Merge pull request #6594 (diff) | |
| parent | Add NODE_BLOOM service bit and bump protocol version (diff) | |
| download | discoin-0c2779514041b174c13d7cd3a66f1fd28e9026fa.tar.xz discoin-0c2779514041b174c13d7cd3a66f1fd28e9026fa.zip | |
Merge pull request #6579
afb0cca Add NODE_BLOOM service bit and bump protocol version (Matt Corallo)
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index 58a6d540a..a12e38ff5 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -918,6 +918,9 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) // Option to startup with mocktime set (used for regression testing): SetMockTime(GetArg("-mocktime", 0)); // SetMockTime(0) is a no-op + if (GetBoolArg("-peerbloomfilters", true)) + nLocalServices |= NODE_BLOOM; + // ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log // Initialize elliptic curve code |