Remove direct bitcoin calls from qt/optionsmodel.cpp

This commit is contained in:
Russell Yanofsky
2017-04-17 14:23:14 -04:00
committed by John Newbery
parent 71e0d90876
commit c0f2756be5
7 changed files with 57 additions and 27 deletions

View File

@@ -362,7 +362,7 @@ void BitcoinApplication::createPaymentServer()
void BitcoinApplication::createOptionsModel(bool resetSettings)
{
optionsModel = new OptionsModel(nullptr, resetSettings);
optionsModel = new OptionsModel(m_node, nullptr, resetSettings);
}
void BitcoinApplication::createWindow(const NetworkStyle *networkStyle)