From 25546c3e0ab0b8783a2e4500f953fd2a7694068f Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sat, 19 Dec 2015 15:21:16 +0000 Subject: [PATCH] wallet: fix version mismatch when serializing new info --- src/wallet/wallet2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index ecf4ef3dc..7095816f8 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -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;