mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-10 10:52:31 -05:00
net: Simplify ParamsStream usage
Simplify ParamsStream usage in ConvertSeeds now that ParamsStream supports rvalue substream arguments.
This commit is contained in:
parent
e6794e475c
commit
951203bcc4
1 changed files with 1 additions and 2 deletions
|
@ -198,8 +198,7 @@ static std::vector<CAddress> ConvertSeeds(const std::vector<uint8_t> &vSeedsIn)
|
||||||
const auto one_week{7 * 24h};
|
const auto one_week{7 * 24h};
|
||||||
std::vector<CAddress> vSeedsOut;
|
std::vector<CAddress> vSeedsOut;
|
||||||
FastRandomContext rng;
|
FastRandomContext rng;
|
||||||
DataStream underlying_stream{vSeedsIn};
|
ParamsStream s{DataStream{vSeedsIn}, CAddress::V2_NETWORK};
|
||||||
ParamsStream s{underlying_stream, CAddress::V2_NETWORK};
|
|
||||||
while (!s.eof()) {
|
while (!s.eof()) {
|
||||||
CService endpoint;
|
CService endpoint;
|
||||||
s >> endpoint;
|
s >> endpoint;
|
||||||
|
|
Loading…
Add table
Reference in a new issue