diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-03-21 14:09:19 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-03-21 14:09:19 +0200 |
commit | 7769a6e7573e6975aded2f6e156a71d73fcac23c (patch) | |
tree | 328cc75a243aa1821d2a20906746b2fabbd45d70 /src/wallet/wallet2.h | |
parent | Merge pull request #1899 (diff) | |
parent | wallet2: cache which pool txes were scanned already (diff) | |
download | monero-7769a6e7573e6975aded2f6e156a71d73fcac23c.tar.xz |
Merge pull request #1903
350e99ae wallet2: cache which pool txes were scanned already (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index fbff94c50..565cd9870 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -485,6 +485,10 @@ namespace tools if(ver < 17) return; a & m_unconfirmed_payments; + if(ver < 18) + return; + a & m_scanned_pool_txs[0]; + a & m_scanned_pool_txs[1]; } /*! @@ -679,9 +683,10 @@ namespace tools bool m_confirm_missing_payment_id; bool m_ask_password; NodeRPCProxy m_node_rpc_proxy; + std::unordered_set<crypto::hash> m_scanned_pool_txs[2]; }; } -BOOST_CLASS_VERSION(tools::wallet2, 17) +BOOST_CLASS_VERSION(tools::wallet2, 18) BOOST_CLASS_VERSION(tools::wallet2::transfer_details, 7) BOOST_CLASS_VERSION(tools::wallet2::payment_details, 1) BOOST_CLASS_VERSION(tools::wallet2::unconfirmed_transfer_details, 6) |