| 25 | } |
| 26 | |
| 27 | Node::P2PProtocolBytecoin::P2PProtocolBytecoin(Node *node, P2PClient *client) |
| 28 | : P2PProtocolBasic(node->m_config, node->m_p2p.get_unique_number(), client) |
| 29 | , m_node(node) |
| 30 | , m_chain_timer(std::bind(&P2PProtocolBytecoin::on_chain_timer, this)) |
| 31 | , m_download_timer(std::bind(&P2PProtocolBytecoin::on_download_timer, this)) |
| 32 | , m_syncpool_timer(std::bind(&P2PProtocolBytecoin::on_syncpool_timer, this)) |
| 33 | , m_download_transactions_timer(std::bind(&P2PProtocolBytecoin::on_download_transactions_timer, this)) {} |
| 34 | |
| 35 | Node::P2PProtocolBytecoin::~P2PProtocolBytecoin() = default; |
| 36 |
nothing calls this directly
no test coverage detected