mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
[Qt] remove broken OptionsModel::Upgrade()
This commit is contained in:
parent
1d0295e9d5
commit
44eb59e4a6
@ -376,9 +376,6 @@ void BitcoinApplication::initializeResult(int retval)
|
|||||||
returnValue = retval ? 0 : 1;
|
returnValue = retval ? 0 : 1;
|
||||||
if(retval)
|
if(retval)
|
||||||
{
|
{
|
||||||
// Miscellaneous initialization after core is initialized
|
|
||||||
optionsModel->Upgrade(); // Must be done after AppInit2
|
|
||||||
|
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
PaymentServer::LoadRootCAs();
|
PaymentServer::LoadRootCAs();
|
||||||
paymentServer->setOptionsModel(optionsModel);
|
paymentServer->setOptionsModel(optionsModel);
|
||||||
|
@ -130,69 +130,6 @@ void OptionsModel::Reset()
|
|||||||
// default setting for OptionsModel::StartAtStartup - disabled
|
// default setting for OptionsModel::StartAtStartup - disabled
|
||||||
if (GUIUtil::GetStartOnSystemStartup())
|
if (GUIUtil::GetStartOnSystemStartup())
|
||||||
GUIUtil::SetStartOnSystemStartup(false);
|
GUIUtil::SetStartOnSystemStartup(false);
|
||||||
|
|
||||||
// Ensure Upgrade() is not running again by setting the bImportFinished flag
|
|
||||||
settings.setValue("bImportFinished", true);
|
|
||||||
}
|
|
||||||
|
|
||||||
void OptionsModel::Upgrade()
|
|
||||||
{
|
|
||||||
QSettings settings;
|
|
||||||
|
|
||||||
// Already upgraded
|
|
||||||
if (settings.contains("bImportFinished"))
|
|
||||||
return;
|
|
||||||
|
|
||||||
settings.setValue("bImportFinished", true);
|
|
||||||
|
|
||||||
#ifdef ENABLE_WALLET
|
|
||||||
// Move settings from old wallet.dat (if any):
|
|
||||||
CWalletDB walletdb(strWalletFile);
|
|
||||||
|
|
||||||
QList<QString> intOptions;
|
|
||||||
intOptions << "nDisplayUnit" << "nTransactionFee";
|
|
||||||
foreach(QString key, intOptions)
|
|
||||||
{
|
|
||||||
int value = 0;
|
|
||||||
if (walletdb.ReadSetting(key.toStdString(), value))
|
|
||||||
{
|
|
||||||
settings.setValue(key, value);
|
|
||||||
walletdb.EraseSetting(key.toStdString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
QList<QString> boolOptions;
|
|
||||||
boolOptions << "bDisplayAddresses" << "fMinimizeToTray" << "fMinimizeOnClose" << "fUseProxy" << "fUseUPnP";
|
|
||||||
foreach(QString key, boolOptions)
|
|
||||||
{
|
|
||||||
bool value = false;
|
|
||||||
if (walletdb.ReadSetting(key.toStdString(), value))
|
|
||||||
{
|
|
||||||
settings.setValue(key, value);
|
|
||||||
walletdb.EraseSetting(key.toStdString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
try
|
|
||||||
{
|
|
||||||
CAddress addrProxyAddress;
|
|
||||||
if (walletdb.ReadSetting("addrProxy", addrProxyAddress))
|
|
||||||
{
|
|
||||||
settings.setValue("addrProxy", addrProxyAddress.ToStringIPPort().c_str());
|
|
||||||
walletdb.EraseSetting("addrProxy");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (std::ios_base::failure &e)
|
|
||||||
{
|
|
||||||
// 0.6.0rc1 saved this as a CService, which causes failure when parsing as a CAddress
|
|
||||||
CService addrProxy;
|
|
||||||
if (walletdb.ReadSetting("addrProxy", addrProxy))
|
|
||||||
{
|
|
||||||
settings.setValue("addrProxy", addrProxy.ToStringIPPort().c_str());
|
|
||||||
walletdb.EraseSetting("addrProxy");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
Init();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int OptionsModel::rowCount(const QModelIndex & parent) const
|
int OptionsModel::rowCount(const QModelIndex & parent) const
|
||||||
|
@ -46,9 +46,6 @@ public:
|
|||||||
void Init();
|
void Init();
|
||||||
void Reset();
|
void Reset();
|
||||||
|
|
||||||
/* Migrate settings from wallet.dat after app initialization */
|
|
||||||
void Upgrade();
|
|
||||||
|
|
||||||
int rowCount(const QModelIndex & parent = QModelIndex()) const;
|
int rowCount(const QModelIndex & parent = QModelIndex()) const;
|
||||||
QVariant data(const QModelIndex & index, int role = Qt::DisplayRole) const;
|
QVariant data(const QModelIndex & index, int role = Qt::DisplayRole) const;
|
||||||
bool setData(const QModelIndex & index, const QVariant & value, int role = Qt::EditRole);
|
bool setData(const QModelIndex & index, const QVariant & value, int role = Qt::EditRole);
|
||||||
|
Loading…
Reference in New Issue
Block a user