diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-09-03 12:20:47 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-09-03 12:23:34 +0200 |
commit | bbda40226b87ab152bc24b67a1f296857e6e465f (patch) | |
tree | e785f313bc492dc0a33a9393c310f15afd66e6d6 | |
parent | b8d92236f61699846f67d8ce6cb55458a46f9de1 (diff) |
net: Remove MilliSleep from StopNode
I don't understand why it would be there in the first place. This looks
like voodoo, not programming.
-rw-r--r-- | src/net.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index 3966706207..dbba5108da 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1791,7 +1791,6 @@ bool StopNode() if (semOutbound) for (int i=0; i<MAX_OUTBOUND_CONNECTIONS; i++) semOutbound->post(); - MilliSleep(50); DumpAddresses(); return true; |