diff options
| author | Riccardo Spagni <ric@spagni.net> | 2016-04-06 11:25:00 +0900 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2016-04-06 11:25:00 +0900 |
| commit | fafb43f3cde91040f90e54e1dcd35e5790765efa (patch) | |
| tree | b7f7d5918cb0727a08fa1b483e078333d4837a19 | |
| parent | e7c8a32a288b9e5d82da09c8e077f7ed0e440fec (diff) | |
| parent | 1aad759bf14c516318cdbac6f3fafe6f3db43a50 (diff) | |
| download | monzero-core-fafb43f3cde91040f90e54e1dcd35e5790765efa.tar.gz monzero-core-fafb43f3cde91040f90e54e1dcd35e5790765efa.tar.xz monzero-core-fafb43f3cde91040f90e54e1dcd35e5790765efa.zip | |
Merge pull request #798
1aad759 tx_pool: fix (hopefully) save/load of kept_by_block (moneromooo-monero)
| -rw-r--r-- | src/cryptonote_core/tx_pool.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cryptonote_core/tx_pool.h b/src/cryptonote_core/tx_pool.h index 84e11eeff..c7aab7f08 100644 --- a/src/cryptonote_core/tx_pool.h +++ b/src/cryptonote_core/tx_pool.h @@ -310,6 +310,7 @@ namespace cryptonote #define CURRENT_MEMPOOL_ARCHIVE_VER 11 +#define CURRENT_MEMPOOL_TX_DETAILS_ARCHIVE_VER 11 /** * @brief serialize the transaction pool to/from disk @@ -530,6 +531,7 @@ namespace boost } } BOOST_CLASS_VERSION(cryptonote::tx_memory_pool, CURRENT_MEMPOOL_ARCHIVE_VER) +BOOST_CLASS_VERSION(cryptonote::tx_memory_pool::tx_details, CURRENT_MEMPOOL_TX_DETAILS_ARCHIVE_VER) |
