diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-04-26 13:46:20 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-04-26 13:46:20 +0300 |
commit | 566166aafd29bbca1f4916d4383752945892eb20 (patch) | |
tree | 785b1711ffdb6a1a97d41849f649b103ef28110a /src/wallet/api/wallet.h | |
parent | Merge remote-tracking branch 'upstream/master' into develop (diff) | |
download | monero-566166aafd29bbca1f4916d4383752945892eb20.tar.xz |
merged with upstream
Diffstat (limited to 'src/wallet/api/wallet.h')
-rw-r--r-- | src/wallet/api/wallet.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h index 3eaaec59e..3671c2f7a 100644 --- a/src/wallet/api/wallet.h +++ b/src/wallet/api/wallet.h @@ -62,6 +62,8 @@ public: bool store(const std::string &path); bool init(const std::string &daemon_address, uint64_t upper_transaction_size_limit); bool connectToDaemon(); + void setTrustedDaemon(bool arg); + bool trustedDaemon() const; uint64_t balance() const; uint64_t unlockedBalance() const; bool refresh(); @@ -81,6 +83,7 @@ private: std::string m_errorString; std::string m_password; TransactionHistoryImpl * m_history; + bool m_trustedDaemon; }; |