Pump hidden context sooner

This has to happen before pumping links because it is putting things on
links.
This commit is contained in:
Jason Rhinelander 2021-11-14 11:03:33 -04:00
parent 0924dd8862
commit b3a8160c89
1 changed files with 1 additions and 1 deletions

View File

@ -87,9 +87,9 @@ namespace llarp
llarp::LogTrace("Router::PumpLL() start");
if (_stopping.load())
return;
_hiddenServiceContext.Pump();
_outboundMessageHandler.Pump();
_linkManager.PumpLinks();
_hiddenServiceContext.Pump();
llarp::LogTrace("Router::PumpLL() end");
}