Skip to content

Commit 75f473c

Browse files
committed
Fix method hiding warning.
1 parent 33ad338 commit 75f473c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

include/bitcoin/node/channels/channel_ws.hpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,8 @@ class BCN_API channel_ws
5555

5656
// TODO: Serialize message.
5757
const auto ptr = system::move_shared(std::move(message));
58-
network::count_handler complete = std::bind(&channel_ws::handle_send,
59-
shared_from_base<channel_ws>(), _1, _2, ptr,
60-
std::move(handler));
58+
network::count_handler complete = std::bind(&channel_ws::handle_send_ws,
59+
shared_from_base<channel_ws>(), _1, _2, ptr, std::move(handler));
6160

6261
if (!ptr)
6362
{
@@ -96,7 +95,7 @@ class BCN_API channel_ws
9695
});
9796
}
9897

99-
inline void handle_send(const code& ec, size_t, const system::chunk_ptr&,
98+
inline void handle_send_ws(const code& ec, size_t, const system::chunk_ptr&,
10099
const network::result_handler& handler) NOEXCEPT
101100
{
102101
if (ec) stop(ec);

0 commit comments

Comments
 (0)