Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix broken intra links
  • Loading branch information
blacktemplar committed Dec 11, 2020
commit 8d7f318cc9f7a18480b4b25c9ee186b3a00a8a94
2 changes: 1 addition & 1 deletion protocols/gossipsub/src/behaviour.rs
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ where
}
}

/// Determines if a peer's score is below a given [`PeerScoreThreshold`] chosen via the
/// Determines if a peer's score is below a given `PeerScoreThreshold` chosen via the
/// `threshold` parameter.
fn score_below_threshold(
&self,
Expand Down
2 changes: 1 addition & 1 deletion protocols/gossipsub/src/peer_score.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ enum MeshStatus {
}

impl MeshStatus {
/// Initialises a new [`Active`] mesh status.
/// Initialises a new [`MeshStatus::Active`] mesh status.
pub fn new_active() -> Self {
MeshStatus::Active {
graft_time: Instant::now(),
Expand Down