diff options
author | Lee Clagett <code@leeclagett.com> | 2021-01-06 11:47:09 -0500 |
---|---|---|
committer | Lee Clagett <code@leeclagett.com> | 2020-12-22 20:54:16 +0000 |
commit | 927141bcc4dd5ff729eb445b32a624f9e5acbe2d (patch) | |
tree | 4f03162832843a8c40b9b3dc9318ec8ef5ff5f20 /src/cryptonote_protocol/cryptonote_protocol_handler.h | |
parent | Merge pull request #7271 (diff) | |
download | monero-927141bcc4dd5ff729eb445b32a624f9e5acbe2d.tar.xz |
Command max_bytes moved from dynamic map to static switch
Diffstat (limited to '')
-rw-r--r-- | src/cryptonote_protocol/cryptonote_protocol_handler.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.h b/src/cryptonote_protocol/cryptonote_protocol_handler.h index 5368df7b9..28530f3e7 100644 --- a/src/cryptonote_protocol/cryptonote_protocol_handler.h +++ b/src/cryptonote_protocol/cryptonote_protocol_handler.h @@ -110,7 +110,6 @@ namespace cryptonote std::list<connection_info> get_connections(); const block_queue &get_block_queue() const { return m_block_queue; } void stop(); - void on_connection_new(cryptonote_connection_context &context); 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; } |