Merge pull request #2329

e3c4395a p2p: init hashes after deserializing a network address (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2017-09-02 11:29:40 +02:00
commit 5551fcf60b
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 2 additions and 0 deletions

View File

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