diff options
author | Jaquee <jaquee.monero@gmail.com> | 2017-08-04 23:28:38 +0200 |
---|---|---|
committer | Jaquee <jaquee.monero@gmail.com> | 2017-10-15 17:56:35 +0200 |
commit | 79207743b84a404041e60ce7492c2cf3944eb93c (patch) | |
tree | 5b826743c33c8e67adaafb0aed52400d55665e2c /src/wallet/wallet2_api.h | |
parent | walletAPI: add tx unlock_time (diff) | |
download | monero-79207743b84a404041e60ce7492c2cf3944eb93c.tar.xz |
walletAPI: init() lightwallet and SSL support
Diffstat (limited to 'src/wallet/wallet2_api.h')
-rw-r--r-- | src/wallet/wallet2_api.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h index 6f612bbb3..be17c7506 100644 --- a/src/wallet/wallet2_api.h +++ b/src/wallet/wallet2_api.h @@ -427,9 +427,12 @@ struct Wallet * * \param daemon_address - daemon address in "hostname:port" format * \param upper_transaction_size_limit + * \param daemon_username + * \param daemon_password + * \param lightWallet - start wallet in light mode, connect to a openmonero compatible server. * \return - true on success */ - virtual bool init(const std::string &daemon_address, uint64_t upper_transaction_size_limit, const std::string &daemon_username = "", const std::string &daemon_password = "") = 0; + virtual 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 use_ssl = false, bool lightWallet = false) = 0; /*! * \brief createWatchOnly - Creates a watch only wallet |