aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/misc.cpp
diff options
context:
space:
mode:
authorJeremy Rubin <[email protected]>2016-06-15 19:28:04 -0400
committerCory Fields <[email protected]>2016-09-08 13:06:05 -0400
commitd1a2295f0d58423652b124b48fc887a9721b765c (patch)
tree72922e98c159106a37c8efdc2670630ab814f8cf /src/rpc/misc.cpp
parentnet: move vNodesDisconnected into CConnman (diff)
downloaddiscoin-d1a2295f0d58423652b124b48fc887a9721b765c.tar.xz
discoin-d1a2295f0d58423652b124b48fc887a9721b765c.zip
Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
Diffstat (limited to 'src/rpc/misc.cpp')
-rw-r--r--src/rpc/misc.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rpc/misc.cpp b/src/rpc/misc.cpp
index ffd377b48..2b5782367 100644
--- a/src/rpc/misc.cpp
+++ b/src/rpc/misc.cpp
@@ -481,7 +481,6 @@ UniValue setmocktime(const UniValue& params, bool fHelp)
if(g_connman) {
g_connman->ForEachNode([t](CNode* pnode) {
pnode->nLastSend = pnode->nLastRecv = t;
- return true;
});
}