Merge pull request #2448

8133a642 p2p: init hashes after deserializing a network address (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2017-09-25 17:58:43 +02:00
commit 15b0ff2c32
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -59,6 +59,8 @@ namespace boost
{
a & na.m_ip;
a & na.m_port;
if (!typename Archive::is_saving())
na.init_ids();
}