diff options
| author | Jeremy Rubin <[email protected]> | 2016-06-15 19:28:04 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2016-09-08 13:06:05 -0400 |
| commit | d1a2295f0d58423652b124b48fc887a9721b765c (patch) | |
| tree | 72922e98c159106a37c8efdc2670630ab814f8cf /src/rpc/net.cpp | |
| parent | net: move vNodesDisconnected into CConnman (diff) | |
| download | discoin-d1a2295f0d58423652b124b48fc887a9721b765c.tar.xz discoin-d1a2295f0d58423652b124b48fc887a9721b765c.zip | |
Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
Diffstat (limited to 'src/rpc/net.cpp')
| -rw-r--r-- | src/rpc/net.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rpc/net.cpp b/src/rpc/net.cpp index 61b6b62c9..b011029f5 100644 --- a/src/rpc/net.cpp +++ b/src/rpc/net.cpp @@ -61,7 +61,6 @@ UniValue ping(const UniValue& params, bool fHelp) // Request that each node send a ping during next message processing pass g_connman->ForEachNode([](CNode* pnode) { pnode->fPingQueued = true; - return true; }); return NullUniValue; } |