qt: fix compile issue in Qt GUI
This was introduced in 3e1cf9b
. Needs a cast to qint64.
This commit is contained in:
parent
e0c06d2c49
commit
9b4b3cf9cf
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ void OptionsModel::Init()
|
|||
// Wallet
|
||||
#ifdef ENABLE_WALLET
|
||||
if (!settings.contains("nTransactionFee"))
|
||||
settings.setValue("nTransactionFee", DEFAULT_TRANSACTION_FEE);
|
||||
settings.setValue("nTransactionFee", (qint64)DEFAULT_TRANSACTION_FEE);
|
||||
nTransactionFee = settings.value("nTransactionFee").toLongLong(); // if -paytxfee is set, this will be overridden later in init.cpp
|
||||
if (mapArgs.count("-paytxfee"))
|
||||
addOverriddenOption("-paytxfee");
|
||||
|
|
Loading…
Reference in a new issue