Merge pull request #143

4e61ebe add default argument to store() (Jacob Brydolf)
7c9d223 remove unnecessary i/o (Jacob Brydolf)
This commit is contained in:
Riccardo Spagni
2016-11-11 12:46:15 +02:00
2 changed files with 12 additions and 8 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);