diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-26 00:20:46 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-27 08:51:16 +0000 |
commit | 050bb337d772feeb53cb454a62f316ce9bac915f (patch) | |
tree | 383c45a36c1dea65d00048e7fd0d909d961d0962 /src/wallet/wallet2.h | |
parent | Merge pull request #5286 (diff) | |
download | monero-050bb337d772feeb53cb454a62f316ce9bac915f.tar.xz |
wallet2: factor the watchonly/multisig/etc fields on creation
There's half a dozen calls, and it's easy to miss some when
adding a new field.
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index b879362e2..dfadd0c28 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -1342,6 +1342,7 @@ namespace tools void cache_tx_data(const cryptonote::transaction& tx, const crypto::hash &txid, tx_cache_data &tx_cache_data) const; std::shared_ptr<std::map<std::pair<uint64_t, uint64_t>, size_t>> create_output_tracker_cache() const; + void init_type(hw::device::device_type device_type); void setup_new_blockchain(); void create_keys_file(const std::string &wallet_, bool watch_only, const epee::wipeable_string &password, bool create_address_file); |