wallet: storing outgoing tx info now defaults to enabled

The info is stored encrypted, and is pretty useful, often after
the fact.
This commit is contained in:
moneromooo-monero 2015-11-22 12:40:03 +00:00
parent 9156ba3a3c
commit db1fb66e66
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -79,9 +79,9 @@ namespace tools
class wallet2
{
wallet2(const wallet2&) : m_run(true), m_callback(0), m_testnet(false), m_always_confirm_transfers (false), m_store_tx_info(false), m_default_mixin(0) {}
wallet2(const wallet2&) : m_run(true), m_callback(0), m_testnet(false), m_always_confirm_transfers (false), m_store_tx_info(true), m_default_mixin(0) {}
public:
wallet2(bool testnet = false, bool restricted = false) : m_run(true), m_callback(0), m_testnet(testnet), m_restricted(restricted), is_old_file_format(false), m_store_tx_info(false), m_default_mixin(0) {}
wallet2(bool testnet = false, bool restricted = false) : m_run(true), m_callback(0), m_testnet(testnet), m_restricted(restricted), is_old_file_format(false), m_store_tx_info(true), m_default_mixin(0) {}
struct transfer_details
{
uint64_t m_block_height;