diff options
author | Jaquee <jaquee.monero@gmail.com> | 2017-02-25 22:08:50 +0100 |
---|---|---|
committer | Jaquee <jaquee.monero@gmail.com> | 2017-02-25 22:17:35 +0100 |
commit | 531057438201c8c4f5ae860753aefeb298d8db59 (patch) | |
tree | a8aff1f247767bdd660833b9944284808c0b699b /src/wallet/api/wallet.h | |
parent | Merge pull request #1776 (diff) | |
download | monero-531057438201c8c4f5ae860753aefeb298d8db59.tar.xz |
Wallet API: Add support for daemon rpc login
Diffstat (limited to 'src/wallet/api/wallet.h')
-rw-r--r-- | src/wallet/api/wallet.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h index 3501fa0ac..456110908 100644 --- a/src/wallet/api/wallet.h +++ b/src/wallet/api/wallet.h @@ -78,7 +78,7 @@ public: bool store(const std::string &path); std::string filename() const; std::string keysFilename() const; - bool init(const std::string &daemon_address, uint64_t upper_transaction_size_limit = 0); + bool init(const std::string &daemon_address, uint64_t upper_transaction_size_limit = 0, const std::string &daemon_username = "", const std::string &daemon_password = ""); bool connectToDaemon(); ConnectionStatus connected() const; void setTrustedDaemon(bool arg); @@ -170,6 +170,7 @@ private: std::atomic<bool> m_rebuildWalletCache; // cache connection status to avoid unnecessary RPC calls mutable std::atomic<bool> m_is_connected; + boost::optional<epee::net_utils::http::login> m_daemon_login{}; }; |