Remove beta tag from gossipsub 1.2 (#6344)

* Remove the beta tag from gossipsub v1.2

* fix clippy

* Merge branch 'unstable' into remove-beta-tag
This commit is contained in:
Age Manning
2024-09-06 02:19:07 +10:00
committed by GitHub
parent 369807becc
commit df19b6220a
5 changed files with 13 additions and 11 deletions

View File

@@ -2716,7 +2716,7 @@ where
};
// Only gossipsub 1.2 peers support IDONTWANT.
if peer.kind != PeerKind::Gossipsubv1_2_beta {
if peer.kind != PeerKind::Gossipsubv1_2 {
continue;
}