aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.h
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2017-08-04 23:28:38 +0200
committerJaquee <jaquee.monero@gmail.com>2017-10-15 17:56:35 +0200
commit79207743b84a404041e60ce7492c2cf3944eb93c (patch)
tree5b826743c33c8e67adaafb0aed52400d55665e2c /src/wallet/api/wallet.h
parentwalletAPI: add tx unlock_time (diff)
downloadmonero-79207743b84a404041e60ce7492c2cf3944eb93c.tar.xz
walletAPI: init() lightwallet and SSL support
Diffstat (limited to '')
-rw-r--r--src/wallet/api/wallet.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h
index 020c5e46a..30af9550e 100644
--- a/src/wallet/api/wallet.h
+++ b/src/wallet/api/wallet.h
@@ -83,7 +83,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, const std::string &daemon_username = "", const std::string &daemon_password = "");
+ 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);
bool connectToDaemon();
ConnectionStatus connected() const;
void setTrustedDaemon(bool arg);
@@ -151,7 +151,7 @@ private:
bool daemonSynced() const;
void stopRefresh();
bool isNewWallet() const;
- bool doInit(const std::string &daemon_address, uint64_t upper_transaction_size_limit);
+ bool doInit(const std::string &daemon_address, uint64_t upper_transaction_size_limit = 0, bool ssl = false);
private:
friend class PendingTransactionImpl;