topicIDs -> topicIds; PubsubPeerEvent -> PubSubPeerEvent; messageIDs -> messageIds (#748)

This commit is contained in:
tersec
2022-07-27 17:14:05 +00:00
committed by GitHub
parent 4ca1c2d7ed
commit 1e598a0239
11 changed files with 51 additions and 51 deletions

View File

@@ -139,7 +139,7 @@ method rpcHandler*(f: FloodSub,
discard
var toSendPeers = initHashSet[PubSubPeer]()
for t in msg.topicIDs: # for every topic in the message
for t in msg.topicIds: # for every topic in the message
if t notin f.topics:
continue
f.floodsub.withValue(t, peers): toSendPeers.incl(peers[])