Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ChainSafe/gossamer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 93da1090edd81efcc282ef7cc685bdab906634a0
Choose a base ref
..
head repository: ChainSafe/gossamer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f5f40acf7b867ae7b689c41f7003f549287e8f0c
Choose a head ref
Showing with 0 additions and 7 deletions.
  1. +0 −7 dot/parachain/dispute/types/dispute.go
7 changes: 0 additions & 7 deletions dot/parachain/dispute/types/dispute.go
Original file line number Diff line number Diff line change
@@ -13,13 +13,6 @@ type Comparator struct {
CandidateHash common.Hash `scale:"2"`
}

func NewDisputeComparator(sessionIndex parachain.SessionIndex, candidateHash common.Hash) *Comparator {
return &Comparator{
SessionIndex: sessionIndex,
CandidateHash: candidateHash,
}
}

// Dispute is a dispute for a candidate.
// It is used as an item in the btree.BTree ordered by session index and candidate hash.
type Dispute struct {