diff options
| author | Cory Fields <[email protected]> | 2016-05-25 21:26:46 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2016-09-08 12:24:07 -0400 |
| commit | e81a602cf02edfb21c3ec097bd7cf71f189ed783 (patch) | |
| tree | 4740757392d73e64450bfcdff898d3bc07bbe591 /src/init.cpp | |
| parent | net: Pass best block known height into CConnman (diff) | |
| download | discoin-e81a602cf02edfb21c3ec097bd7cf71f189ed783.tar.xz discoin-e81a602cf02edfb21c3ec097bd7cf71f189ed783.zip | |
net: pass CClientUIInterface into CConnman
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 4dce8be81..9e2ed62a9 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1510,7 +1510,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) std::string strNodeError; int nMaxOutbound = std::min(MAX_OUTBOUND_CONNECTIONS, nMaxConnections); - if(!StartNode(connman, threadGroup, scheduler, nLocalServices, nRelevantServices, nMaxConnections, nMaxOutbound, chainActive.Height(), strNodeError)) + if(!StartNode(connman, threadGroup, scheduler, nLocalServices, nRelevantServices, nMaxConnections, nMaxOutbound, chainActive.Height(), &uiInterface, strNodeError)) return InitError(strNodeError); // ********************************************************* Step 12: finished |