Skip to content

Commit

Permalink
fixup! fix(f3): test API during inactive-F3 modes and make consistent…
Browse files Browse the repository at this point in the history
… and safe
  • Loading branch information
rvagg committed Dec 13, 2024
1 parent c2202f2 commit 2666c3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/api_errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func (ErrActorNotFound) Error() string { return "actor not found" }

type errF3Disabled struct{}

func (errF3Disabled) Error() string { return "F3 is disabled" }
func (errF3Disabled) Error() string { return "f3 is disabled" }

type errF3ParticipationTicketInvalid struct{}

Expand All @@ -124,7 +124,7 @@ func (errF3ParticipationTicketStartBeforeExisting) Error() string {

type errF3NotReady struct{}

func (errF3NotReady) Error() string { return "F3 isn't yet ready to participate" }
func (errF3NotReady) Error() string { return "f3 isn't yet ready to participate" }

// ErrExecutionReverted is used to return execution reverted with a reason for a revert in the `data` field.
type ErrExecutionReverted struct {
Expand Down

0 comments on commit 2666c3e

Please sign in to comment.