Fix type of CandidatePairState constants

This commit is contained in:
Steffen Vogel
2024-03-20 14:50:04 -04:00
committed by Sean DuBois
parent 8680cd591f
commit b386d4488f
+1 -1
View File
@@ -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.