diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-01-29 19:44:25 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-01-29 19:44:25 +0000 |
commit | 4b23714658f735351950112899a4412ecb309edd (patch) | |
tree | febd8368da035e5e9a62fd6dbdafda04e8379e4d /src | |
parent | Merge pull request #629 (diff) | |
download | monero-4b23714658f735351950112899a4412ecb309edd.tar.xz |
tx_pool: serialize missing kept_by_block flag
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptonote_core/tx_pool.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cryptonote_core/tx_pool.h b/src/cryptonote_core/tx_pool.h index 34dc1f72f..0d2a81ca5 100644 --- a/src/cryptonote_core/tx_pool.h +++ b/src/cryptonote_core/tx_pool.h @@ -110,7 +110,7 @@ namespace cryptonote /*bool flush_pool(const std::strig& folder); bool inflate_pool(const std::strig& folder);*/ -#define CURRENT_MEMPOOL_ARCHIVE_VER 10 +#define CURRENT_MEMPOOL_ARCHIVE_VER 11 template<class archive_t> void serialize(archive_t & a, const unsigned int version) @@ -243,6 +243,9 @@ namespace boost return; ar & td.last_relayed_time; ar & td.relayed; + if (version < 11) + return; + ar & td.kept_by_block; } } } |