@@ -63,28 +63,28 @@ class BCN_API protocol_block_in_106
63
63
64
64
// / Accept incoming inventory message.
65
65
virtual bool handle_receive_inventory (const code& ec,
66
- const network::messages::inventory::cptr& message) NOEXCEPT;
66
+ const network::messages::p2p:: inventory::cptr& message) NOEXCEPT;
67
67
68
68
// / Accept incoming block message.
69
69
virtual bool handle_receive_block (const code& ec,
70
- const network::messages::block::cptr& message) NOEXCEPT;
70
+ const network::messages::p2p:: block::cptr& message) NOEXCEPT;
71
71
virtual void handle_organize (const code& ec, size_t height,
72
72
const system::chain::block::cptr& block_ptr) NOEXCEPT;
73
73
virtual void do_handle_organize (const code& ec, size_t height,
74
74
const system::chain::block::cptr& block_ptr) NOEXCEPT;
75
75
76
76
private:
77
77
static hashmap to_hashes (size_t reserve,
78
- const network::messages::get_data& getter) NOEXCEPT;
78
+ const network::messages::p2p:: get_data& getter) NOEXCEPT;
79
79
80
- network::messages::get_blocks create_get_inventory () const NOEXCEPT;
81
- network::messages::get_blocks create_get_inventory (
80
+ network::messages::p2p:: get_blocks create_get_inventory () const NOEXCEPT;
81
+ network::messages::p2p:: get_blocks create_get_inventory (
82
82
const system::hash_digest& last) const NOEXCEPT;
83
- network::messages::get_blocks create_get_inventory (
83
+ network::messages::p2p:: get_blocks create_get_inventory (
84
84
system::hashes&& start_hashes) const NOEXCEPT;
85
85
86
- network::messages::get_data create_get_data (
87
- const network::messages::inventory& message) const NOEXCEPT;
86
+ network::messages::p2p:: get_data create_get_data (
87
+ const network::messages::p2p:: inventory& message) const NOEXCEPT;
88
88
89
89
// This is thread safe.
90
90
const type_id block_type_;
0 commit comments