Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Sep 26, 2023
1 parent aa55bcd commit 6d4d4a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x/cronos/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ func (k Keeper) IBCOnTimeoutPacketCallback(
) error {
relayerAddr := common.BytesToAddress(relayer.Bytes())
precompileAddr := common.HexToAddress(contractAddress)
data, err := cronosprecompiles.GetOnTimeoutPacketCallbackk(packet.Sequence, packetSenderAddress)
data, err := cronosprecompiles.GetOnTimeoutPacketCallback(packet.Sequence, packetSenderAddress)
if err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion x/cronos/keeper/precompiles/ica.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func GetOnAcknowledgementPacketCallback(args ...interface{}) ([]byte, error) {
return icaABI.Pack("onAcknowledgementPacketCallback", args...)
}

func GetOnTimeoutPacketCallbackk(args ...interface{}) ([]byte, error) {
func GetOnTimeoutPacketCallback(args ...interface{}) ([]byte, error) {
return icaABI.Pack("onTimeoutPacketCallback", args...)
}

Expand Down

0 comments on commit 6d4d4a2

Please sign in to comment.