Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
adamewozniak committed Nov 10, 2023
1 parent 53df9ea commit 6d3a9b5
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions app/gmpmiddleware/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,25 @@ import (
)

type GeneralMessageHandler interface {
HandleGeneralMessage(ctx sdk.Context, srcChain, srcAddress string, destAddress string, payload []byte, sender string, channel string) error
HandleGeneralMessageWithToken(ctx sdk.Context, srcChain, srcAddress string, destAddress string, payload []byte, sender string, channel string, coin sdk.Coin) error
HandleGeneralMessage(
ctx sdk.Context,
srcChain,
srcAddress string,
destAddress string,
payload []byte,
sender string,
channel string,
) error
HandleGeneralMessageWithToken(
ctx sdk.Context,
srcChain,
srcAddress string,
destAddress string,
payload []byte,
sender string,
channel string,
coin sdk.Coin,
) error
}

// Message is attached in ICS20 packet memo field
Expand Down

0 comments on commit 6d3a9b5

Please sign in to comment.