diff options
author | Oran Juice <oranjuices@hotmail.com> | 2014-10-18 23:01:43 +0530 |
---|---|---|
committer | Oran Juice <oranjuices@hotmail.com> | 2014-10-18 23:01:43 +0530 |
commit | 0bd88ff256e18e13235eaafff388dad99845e4b1 (patch) | |
tree | 2b6a280862eefde59a1537b44c6e60a1c21ca9de /src/wallet/wallet2.h | |
parent | Stores seed language in wallet file. added rapidjson. Yet to test backward co... (diff) | |
download | monero-0bd88ff256e18e13235eaafff388dad99845e4b1.tar.xz |
Writes seed language while generating wallet. Wallet open fix.
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 35e02ce28..10b4d6f3f 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -82,7 +82,7 @@ namespace tools { wallet2(const wallet2&) : m_run(true), m_callback(0), m_testnet(false) {}; public: - wallet2(bool testnet = false) : m_run(true), m_callback(0), m_testnet(testnet) {}; + wallet2(bool testnet = false) : m_run(true), m_callback(0), m_testnet(testnet), is_old_file_format(false) {}; struct transfer_details { uint64_t m_block_height; |