diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2017-04-17 15:37:36 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-04-04 16:52:40 -0400 |
commit | fe6f27e6ea68a139d3a98b30a53706008ef8b132 (patch) | |
tree | b464ec4ceb05146ccd8c2f4e7f44559546a6e72c /src/qt/bitcoin.cpp | |
parent | 5fba3af21e44ab7552c57782de430c1f4cfd6697 (diff) |
Remove direct bitcoin calls from qt/clientmodel.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 07fac934fb..ba473bb4e8 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -460,7 +460,7 @@ void BitcoinApplication::initializeResult(bool success) paymentServer->setOptionsModel(optionsModel); #endif - clientModel = new ClientModel(optionsModel); + clientModel = new ClientModel(m_node, optionsModel); window->setClientModel(clientModel); #ifdef ENABLE_WALLET |