diff options
author | stoffu <stoffu@protonmail.ch> | 2018-08-10 21:15:40 +0900 |
---|---|---|
committer | stoffu <stoffu@protonmail.ch> | 2018-08-23 14:55:09 +0900 |
commit | 8ca1215f25ad48a87c5445ffeed8896122343ad1 (patch) | |
tree | cc425f37ea820dbba2d66f74e53beaf8e61b83fe /src/simplewallet/simplewallet.h | |
parent | Merge pull request #4249 (diff) | |
download | monero-8ca1215f25ad48a87c5445ffeed8896122343ad1.tar.xz |
wallet: store trusted-daemon flag in wallet2
Diffstat (limited to 'src/simplewallet/simplewallet.h')
-rw-r--r-- | src/simplewallet/simplewallet.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/simplewallet/simplewallet.h b/src/simplewallet/simplewallet.h index 99fc19c00..bfbe633ac 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -233,7 +233,6 @@ namespace cryptonote bool print_ring_members(const std::vector<tools::wallet2::pending_tx>& ptx_vector, std::ostream& ostr); std::string get_prompt() const; bool print_seed(bool encrypted); - bool is_daemon_trusted() const { return *m_trusted_daemon; } /*! * \brief Prints the seed with a nice message @@ -337,7 +336,6 @@ namespace cryptonote bool m_restore_deterministic_wallet; // recover flag bool m_restore_multisig_wallet; // recover flag bool m_non_deterministic; // old 2-random generation - boost::optional<bool> m_trusted_daemon; bool m_allow_mismatched_daemon_version; bool m_restoring; // are we restoring, by whatever method? uint64_t m_restore_height; // optional |