diff options
| author | Jonas Schnelli <[email protected]> | 2016-07-26 14:01:36 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2016-07-28 10:57:24 +0200 |
| commit | 893f379ba0befef5301208b6bee8206ac4e76329 (patch) | |
| tree | 87862e64ca5f17e9d12a584f45c25f8c22f20840 /src/qt/optionsmodel.h | |
| parent | Merge #8365: Treat high-sigop transactions as larger rather than rejecting them (diff) | |
| download | discoin-893f379ba0befef5301208b6bee8206ac4e76329.tar.xz discoin-893f379ba0befef5301208b6bee8206ac4e76329.zip | |
[Qt] Add dbcache migration path
Diffstat (limited to 'src/qt/optionsmodel.h')
| -rw-r--r-- | src/qt/optionsmodel.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/qt/optionsmodel.h b/src/qt/optionsmodel.h index 3b491ceac..b23b5f260 100644 --- a/src/qt/optionsmodel.h +++ b/src/qt/optionsmodel.h @@ -84,9 +84,11 @@ private: /* settings that were overriden by command-line */ QString strOverriddenByCommandLine; - /// Add option to list of GUI options overridden through command line/config file + // Add option to list of GUI options overridden through command line/config file void addOverriddenOption(const std::string &option); + // Check settings version and upgrade default values if required + void checkAndMigrate(); Q_SIGNALS: void displayUnitChanged(int unit); void coinControlFeaturesChanged(bool); |