diff options
| author | Cory Fields <[email protected]> | 2016-04-16 17:43:11 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2016-09-08 12:12:57 -0400 |
| commit | a0f3d3cdad630103d919a4ec802c413b87fa1f1a (patch) | |
| tree | b02339d74322cb6e6243a4b1bba743a374f4f439 /src/qt/bantablemodel.cpp | |
| parent | net: handle nodesignals in CConnman (diff) | |
| download | discoin-a0f3d3cdad630103d919a4ec802c413b87fa1f1a.tar.xz discoin-a0f3d3cdad630103d919a4ec802c413b87fa1f1a.zip | |
net: move ban and addrman functions into CConnman
Diffstat (limited to 'src/qt/bantablemodel.cpp')
| -rw-r--r-- | src/qt/bantablemodel.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/bantablemodel.cpp b/src/qt/bantablemodel.cpp index d95106b5a..6e11e2390 100644 --- a/src/qt/bantablemodel.cpp +++ b/src/qt/bantablemodel.cpp @@ -48,7 +48,8 @@ public: void refreshBanlist() { banmap_t banMap; - CNode::GetBanned(banMap); + if(g_connman) + g_connman->GetBanned(banMap); cachedBanlist.clear(); #if QT_VERSION >= 0x040700 |