diff options
author | Andrew Chow <github@achow101.com> | 2023-11-07 14:13:17 -0500 |
---|---|---|
committer | Andrew Chow <github@achow101.com> | 2023-11-07 14:19:09 -0500 |
commit | e77339632efb8faf47deae7dc4fbd82bdc130614 (patch) | |
tree | caa3833335ae72a2635dd1ff04a3d937eca133a9 /src/rest.cpp | |
parent | 0528cfd3071380e4d8a8877761f3ef9564757f30 (diff) | |
parent | bbb68ffdbdafb6717dcadac074f6098750b8aa77 (diff) |
Merge bitcoin/bitcoin#28136: refactor: move GetServicesNames from rpc/util.{h,cpp} to rpc/net.cpp
bbb68ffdbdafb6717dcadac074f6098750b8aa77 refactor: drop protocol.h include header in rpc/util.h (Jon Atack)
1dd62c5295ca319c94f7233bcb2e11f9d37a33f1 refactor: move GetServicesNames from rpc/util.{h,cpp} to rpc/net.cpp (Jon Atack)
Pull request description:
Move `GetServicesNames()` from `rpc/util` to `rpc/net.cpp`, as it is only called from that compilation unit and there is no reason for other ones to need it.
Remove the `protocol.h` include in `rpc/util.h`, as it was only needed for `GetServicesNames()`, drop an unneeded forward declaration (the other IWYU suggestions would require more extensive changes in other files), and add 3 already-missing include headers in other translation units that are needed to compile without `protocol.h` in `rpc/util.h`, as `protocol.h` includes `netaddress.h`, which in turn includes `util/strencodings.h`.
ACKs for top commit:
kevkevinpal:
lgtm ACK [bbb68ff](https://github.com/bitcoin/bitcoin/pull/28136/commits/bbb68ffdbdafb6717dcadac074f6098750b8aa77)
ns-xvrn:
ACK bbb68ff
achow101:
ACK bbb68ffdbdafb6717dcadac074f6098750b8aa77
Tree-SHA512: fcbe195874dd4aa9e86548685b6b28595a2c46f9869b79b6e2b3835f76b49cab4bef6a59c8ad6428063a41b7bb6f687229b06ea614fbd103e0531104af7de55d
Diffstat (limited to 'src/rest.cpp')
-rw-r--r-- | src/rest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rest.cpp b/src/rest.cpp index e094039366..71b7036980 100644 --- a/src/rest.cpp +++ b/src/rest.cpp @@ -26,6 +26,7 @@ #include <txmempool.h> #include <util/any.h> #include <util/check.h> +#include <util/strencodings.h> #include <validation.h> #include <version.h> |