Skip to content

Commit

Permalink
chore: fix error msg typo of btccheckpoint (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianElvis authored Sep 20, 2022
1 parent 57c30c0 commit 42c34ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/btccheckpoint/types/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var (
ErrInvalidCheckpointProof = sdkerrors.Register(ModuleName, 1100, "Invalid checkpoint proof")
ErrDuplicatedSubmission = sdkerrors.Register(ModuleName, 1101, "Duplicated submission")
ErrNoCheckpointsForPreviousEpoch = sdkerrors.Register(ModuleName, 1102, "No checkpoints for previous epoch")
ErrUnknownHeader = sdkerrors.Register(ModuleName, 1103, "No checkpoints for previous epoch")
ErrUnknownHeader = sdkerrors.Register(ModuleName, 1103, "Proof headers are not known in BTCLightclient")
ErrProvidedHeaderFromDifferentForks = sdkerrors.Register(ModuleName, 1104, "Proof header from different forks")
ErrProvidedHeaderDoesNotHaveAncestor = sdkerrors.Register(ModuleName, 1105, "Proof header does not have ancestor in previous epoch")
ErrEpochAlreadyConfirmedOrFinalized = sdkerrors.Register(ModuleName, 1106, "Submission denied. Epoch already confirmed/finalized")
Expand Down

0 comments on commit 42c34ac

Please sign in to comment.