[Qt] Fix nTransactionFee in qt-settings
This commit is contained in:
parent
15ec451554
commit
eb0d9ecb6e
1 changed files with 3 additions and 0 deletions
|
@ -73,6 +73,9 @@ void OptionsModel::Init()
|
|||
#ifdef ENABLE_WALLET
|
||||
if (!settings.contains("nTransactionFee"))
|
||||
settings.setValue("nTransactionFee", 0);
|
||||
nTransactionFee = settings.value("nTransactionFee").toLongLong(); // if -paytxfee is set, this will be overridden later in init.cpp
|
||||
if (mapArgs.count("-paytxfee"))
|
||||
strOverriddenByCommandLine += "-paytxfee ";
|
||||
#endif
|
||||
|
||||
if (!settings.contains("nDatabaseCache"))
|
||||
|
|
Loading…
Reference in a new issue