add default argument to store()

This commit is contained in:
Jacob Brydolf
2016-11-10 12:23:43 +01:00
parent 7c9d2231cc
commit 4e61ebeedb
2 changed files with 3 additions and 3 deletions

View File

@@ -79,7 +79,8 @@ public:
QString address() const;
//! saves wallet to the file by given path
Q_INVOKABLE bool store(const QString &path);
//! empty path stores in current location
Q_INVOKABLE bool store(const QString &path = "");
//! initializes wallet
Q_INVOKABLE bool init(const QString &daemonAddress, quint64 upperTransactionLimit, bool isRecovering = false, quint64 restoreHeight = 0);