From cdae2fb04d3642dfcde748200f1110844fd6625f Mon Sep 17 00:00:00 2001 From: Himess <95512809+Himess@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:05:08 +0300 Subject: [PATCH] Fix typo in comment: "form" corrected to "from" Corrected a typo in the comment where "form" was used instead of "from". The corrected sentence is: "callback id should be issued from the executor contract". --- app/ibc-hooks/message.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ibc-hooks/message.go b/app/ibc-hooks/message.go index b313eef..0abb7fc 100644 --- a/app/ibc-hooks/message.go +++ b/app/ibc-hooks/message.go @@ -48,7 +48,7 @@ type HookData struct { // asyncCallback is same as AsyncCallback. type asyncCallback struct { - // callback id should be issued form the executor contract + // callback id should be issued from the executor contract Id uint64 `json:"id"` ContractAddress string `json:"contract_address"` }