We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6794e4 commit 951203bCopy full SHA for 951203b
src/net.cpp
@@ -198,8 +198,7 @@ static std::vector<CAddress> ConvertSeeds(const std::vector<uint8_t> &vSeedsIn)
198
const auto one_week{7 * 24h};
199
std::vector<CAddress> vSeedsOut;
200
FastRandomContext rng;
201
- DataStream underlying_stream{vSeedsIn};
202
- ParamsStream s{underlying_stream, CAddress::V2_NETWORK};
+ ParamsStream s{DataStream{vSeedsIn}, CAddress::V2_NETWORK};
203
while (!s.eof()) {
204
CService endpoint;
205
s >> endpoint;
0 commit comments