diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2017-04-17 16:02:44 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-04-04 16:52:40 -0400 |
commit | 3034a462a5d30144cf0ec801d07f0c8c36d560f3 (patch) | |
tree | 13e518ccabc2cb1e91aaab1d7edbe0d814f510ec /src/qt/clientmodel.cpp | |
parent | e0b66a3b7c5d3a079636d61fcf611bb6b36c7bc1 (diff) |
Remove direct bitcoin calls from qt/bantablemodel.cpp
Diffstat (limited to 'src/qt/clientmodel.cpp')
-rw-r--r-- | src/qt/clientmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp index 84cfb79549..1dbfc815b6 100644 --- a/src/qt/clientmodel.cpp +++ b/src/qt/clientmodel.cpp @@ -43,7 +43,7 @@ ClientModel::ClientModel(interface::Node& node, OptionsModel *_optionsModel, QOb cachedBestHeaderHeight = -1; cachedBestHeaderTime = -1; peerTableModel = new PeerTableModel(m_node, this); - banTableModel = new BanTableModel(this); + banTableModel = new BanTableModel(m_node, this); pollTimer = new QTimer(this); connect(pollTimer, SIGNAL(timeout()), this, SLOT(updateTimer())); pollTimer->start(MODEL_UPDATE_DELAY); |