aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.h
diff options
context:
space:
mode:
authorOran Juice <oranjuices@hotmail.com>2014-10-18 23:01:43 +0530
committerOran Juice <oranjuices@hotmail.com>2014-10-18 23:01:43 +0530
commit0bd88ff256e18e13235eaafff388dad99845e4b1 (patch)
tree2b6a280862eefde59a1537b44c6e60a1c21ca9de /src/wallet/wallet2.h
parentStores seed language in wallet file. added rapidjson. Yet to test backward co... (diff)
downloadmonero-0bd88ff256e18e13235eaafff388dad99845e4b1.tar.xz
Writes seed language while generating wallet. Wallet open fix.
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r--src/wallet/wallet2.h2
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;