refactor: Use type-safe std::chrono for addrman time

This commit is contained in:
MarcoFalke 2022-03-28 14:20:04 +02:00 committed by MacroFake
parent fa2ae373f3
commit fa64dd6673
No known key found for this signature in database
GPG key ID: CE2B75697E69A548
13 changed files with 164 additions and 153 deletions

View file

@ -43,7 +43,7 @@ static void CreateAddresses()
CAddress ret(CService(addr, port), NODE_NETWORK);
ret.nTime = GetAdjustedTime();
ret.nTime = AdjustedTime();
return ret;
};