diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2017-04-17 14:23:14 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-04-04 16:52:40 -0400 |
commit | c0f2756be517feddacd7c6b89b9faa888b3fef8e (patch) | |
tree | 14986754eac1bc64cf1b409237bc1b6edc85ed26 /src/qt/bitcoin.cpp | |
parent | 71e0d90876efd11e2a4aeb8f3f806c5a1fd54b42 (diff) |
Remove direct bitcoin calls from qt/optionsmodel.cpp
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 4ab5a891e3..3cce9d9bf6 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -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) |