Skip to content

Commit 46bc6f5

Browse files
authored
gossipping -> gossiping (#3033)
1 parent eb7ddd7 commit 46bc6f5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

RELEASES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3018,7 +3018,7 @@ This version is backwards compatible to [v1.7.0](https://github.com/ava-labs/ava
30183018

30193019
### Networking
30203020

3021-
- Reduced default peerlist and accepted frontier gossipping
3021+
- Reduced default peerlist and accepted frontier gossiping
30223022
- Increased the default at-large outbound buffer size to 32 MiB
30233023

30243024
### Metrics
@@ -3100,7 +3100,7 @@ This version is backwards compatible to [v1.7.0](https://github.com/ava-labs/ava
31003100
- Added `--snow-mixed-query-num-push-vdr` and `--snow-mixed-query-num-push-non-vdr` to allow parameterization of sending push queries
31013101
- By default, non-validators now send only pull queries, not push queries.
31023102
- By default, validators now send both pull queries and push queries upon inserting a container into consensus. Previously, nodes sent only push queries.
3103-
- Added metrics to track the amount of over gossipping of `peerlist` messages
3103+
- Added metrics to track the amount of over gossiping of `peerlist` messages
31043104
- Added custom message queueing support to outbound `Peer` messages
31053105
- Reused `Ping` messages to avoid needless memory allocations
31063106

node/node.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ func (n *Node) initNetworking() error {
504504
}
505505
}
506506
if unknownACPs.Len() > 0 {
507-
n.Log.Warn("gossipping unknown ACPs",
507+
n.Log.Warn("gossiping unknown ACPs",
508508
zap.Reflect("acps", unknownACPs),
509509
)
510510
}

snow/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Currently, Avalanchego implements its own message serialization to communicate.
4747

4848
### [Network](https://github.com/ava-labs/avalanchego/blob/master/network/network.go)
4949

50-
The networking interface is shared across all chains. It implements functions from the `ExternalSender` interface. The two functions it implements are `Send` and `Gossip`. `Send` sends a message of type `OutboundMessage` to a specific set of nodes (specified by an array of `NodeIDs`). `Gossip` sends a message of type `OutboundMessage` to a random group of nodes in a subnet (can be a validator or a non-validator). Gossipping is used to push transactions across the network. The networking protocol uses TLS to pass messages between peers.
50+
The networking interface is shared across all chains. It implements functions from the `ExternalSender` interface. The two functions it implements are `Send` and `Gossip`. `Send` sends a message of type `OutboundMessage` to a specific set of nodes (specified by an array of `NodeIDs`). `Gossip` sends a message of type `OutboundMessage` to a random group of nodes in a subnet (can be a validator or a non-validator). gossiping is used to push transactions across the network. The networking protocol uses TLS to pass messages between peers.
5151

5252
Along with sending and gossiping, the networking library is also responsible for making connections and maintaining connections. Any node whether they are a validator or non-validator will attempt to connect to the primary network.
5353

0 commit comments

Comments
 (0)