Skip to content

Commit

Permalink
Fix type of CandidatePairState constants
Browse files Browse the repository at this point in the history
  • Loading branch information
stv0g authored and Sean-Der committed Mar 20, 2024
1 parent 8680cd5 commit 4acdb2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion candidatepair_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type CandidatePairState int
const (
// CandidatePairStateWaiting means a check has not been performed for
// this pair
CandidatePairStateWaiting = iota + 1
CandidatePairStateWaiting CandidatePairState = iota + 1

// CandidatePairStateInProgress means a check has been sent for this pair,
// but the transaction is in progress.
Expand Down

0 comments on commit 4acdb2b

Please sign in to comment.