diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-04-26 13:46:20 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-06-23 15:50:40 +0300 |
commit | 3dd4b4ccf978338dd270184f1e955a163cf7fa52 (patch) | |
tree | a7689e1e6cc8f783653d7b688aedc174cff72bfa /src/wallet/api/wallet.h | |
parent | Wallet API : transaction history in progress (diff) | |
download | monero-3dd4b4ccf978338dd270184f1e955a163cf7fa52.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; }; |