Skip to content

Commit

Permalink
refactor event identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
kingpinXD committed Jul 7, 2023
1 parent 542eb37 commit 86e713e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions x/crosschain/types/event.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ const (
)

const (
OutboundTxSuccessful = "crosschain/OutboundTxSuccessful"
OutboundTxFailed = "crosschain/OutboundTxFailed"
ZrcWithdrawCreated = "crosschain/ZrcWithdrawCreated"
BallotCreated = "crosschain/BallotCreated"
ZetaWithdrawCreated = "crosschain/ZetaWithdrawCreated"
InboundFinalized = "crosschain/InboundFinalized"
StatusChanged = "crosschain/StatusChanged"
CctxScrubbed = "crosschain/CCTXScrubbed"
CctxNewKeygenBlock = "crosschain/CCTXNewKeygenBlock"
OutboundTxSuccessful = "OutboundTxSuccessful"
OutboundTxFailed = "OutboundTxFailed"
ZrcWithdrawCreated = "ZrcWithdrawCreated"
BallotCreated = "BallotCreated"
ZetaWithdrawCreated = "ZetaWithdrawCreated"
InboundFinalized = "InboundFinalized"
StatusChanged = "StatusChanged"
CctxScrubbed = "CCTXScrubbed"
CctxNewKeygenBlock = "CCTXNewKeygenBlock"
)
2 changes: 1 addition & 1 deletion x/emissions/types/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const (
)

const (
ValidatorEmissons = "emissions/ValidatorEmissions"
ValidatorEmissons = "ValidatorEmissions"
)

func EmitValidatorEmissions(ctx sdk.Context, bondFactor, reservesFactor, durationsFactor, validatorRewards, observerRewards, tssRewards string) {
Expand Down

0 comments on commit 86e713e

Please sign in to comment.