diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-10-15 13:31:29 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-10-15 13:31:29 +0200 |
commit | 544413de8f3bfa65156be627b49f990c7780f9ce (patch) | |
tree | 4840e98bbac37476841ece6c3ad5693138b01039 /src | |
parent | Merge pull request #4551 (diff) | |
parent | SOFTWARE is the default wallet device (diff) | |
download | monero-544413de8f3bfa65156be627b49f990c7780f9ce.tar.xz |
Merge pull request #4577
d886b97f SOFTWARE is the default wallet device (m2049r)
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/wallet2.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index f87edf506..d774c54c0 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3611,6 +3611,7 @@ bool wallet2::query_device(hw::device::device_type& device_type, const std::stri if (json.Parse(account_data.c_str()).HasParseError() || !json.IsObject()) crypto::chacha8(keys_file_data.account_data.data(), keys_file_data.account_data.size(), key, keys_file_data.iv, &account_data[0]); + device_type = hw::device::device_type::SOFTWARE; // The contents should be JSON if the wallet follows the new format. if (json.Parse(account_data.c_str()).HasParseError()) { |