wallet: fix version mismatch when serializing new info

This commit is contained in:
moneromooo-monero 2015-12-19 15:21:16 +00:00
parent 5d33b43d8d
commit 25546c3e0a
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

View File

@ -430,7 +430,7 @@ namespace boost
a & x.m_change;
a & x.m_sent_time;
a & x.m_tx;
if (ver < 9)
if (ver < 10)
return;
a & x.m_dests;
a & x.m_payment_id;
@ -443,7 +443,7 @@ namespace boost
a & x.m_amount_out;
a & x.m_change;
a & x.m_block_height;
if (ver < 9)
if (ver < 10)
return;
a & x.m_dests;
a & x.m_payment_id;