diff options
author | xiphon <xiphon@protonmail.com> | 2019-10-28 21:52:19 +0000 |
---|---|---|
committer | xiphon <xiphon@protonmail.com> | 2019-10-28 21:52:19 +0000 |
commit | 2e2bf8a20739522f7d0a76172f4c2d705e79ce00 (patch) | |
tree | 9eead61bb2abe9fce2fca220e2efe34e45948d12 /src/cryptonote_protocol | |
parent | Merge pull request #6044 (diff) | |
download | monero-2e2bf8a20739522f7d0a76172f4c2d705e79ce00.tar.xz |
daemon: always use bootstrap daemon (if set) in '--no-sync' mode
Diffstat (limited to 'src/cryptonote_protocol')
-rw-r--r-- | src/cryptonote_protocol/cryptonote_protocol_handler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.h b/src/cryptonote_protocol/cryptonote_protocol_handler.h index b16b42564..3b456e324 100644 --- a/src/cryptonote_protocol/cryptonote_protocol_handler.h +++ b/src/cryptonote_protocol/cryptonote_protocol_handler.h @@ -112,6 +112,7 @@ namespace cryptonote void stop(); void on_connection_close(cryptonote_connection_context &context); void set_max_out_peers(unsigned int max) { m_max_out_peers = max; } + bool no_sync() const { return m_no_sync; } void set_no_sync(bool value) { m_no_sync = value; } std::string get_peers_overview() const; std::pair<uint32_t, uint32_t> get_next_needed_pruning_stripe() const; |