File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
include/bitcoin/network/messages Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ struct json_value
4848// / Because of the parser and serializer members, neither the reader nor writer
4949// / is movable and as such must be in-place contructed (e.g. variant contruct).
5050template <typename Value = json_value>
51- struct BCT_API body
51+ struct body
5252{
5353 using value_type = Value;
5454
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ namespace network {
2828namespace rpc {
2929
3030template <typename Type>
31- struct value_type
31+ struct message_type
3232 : public json::json_value
3333{
3434 Type message{};
@@ -38,9 +38,9 @@ struct value_type
3838// / Extends json::body with JSON-RPC validation.
3939template <typename Message>
4040struct BCT_API body
41- : public json::body<value_type <Message>>
41+ : public json::body<message_type <Message>>
4242{
43- using message_value = value_type <Message>;
43+ using message_value = message_type <Message>;
4444 using base = typename json::body<message_value>;
4545 using value_type = base::value_type;
4646
You can’t perform that action at this time.
0 commit comments