Skip to content

Commit

Permalink
missisng finalize height key
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-cha committed Oct 14, 2024
1 parent 52bdb39 commit 318a601
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions provider/child/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,13 @@ func ParseFinalizeDeposit(eventAttrs []abcitypes.EventAttribute) (
amount sdk.Coin,
err error) {
missingAttrs := map[string]struct{}{
opchildtypes.AttributeKeyL1Sequence: {},
opchildtypes.AttributeKeySender: {},
opchildtypes.AttributeKeyRecipient: {},
opchildtypes.AttributeKeyDenom: {},
opchildtypes.AttributeKeyBaseDenom: {},
opchildtypes.AttributeKeyAmount: {},
opchildtypes.AttributeKeyL1Sequence: {},
opchildtypes.AttributeKeySender: {},
opchildtypes.AttributeKeyRecipient: {},
opchildtypes.AttributeKeyDenom: {},
opchildtypes.AttributeKeyBaseDenom: {},
opchildtypes.AttributeKeyAmount: {},
opchildtypes.AttributeKeyFinalizeHeight: {},
}

for _, attr := range eventAttrs {
Expand Down

0 comments on commit 318a601

Please sign in to comment.