From aa9a7e37067d7a8a61293ca43d342d7c0cee727f Mon Sep 17 00:00:00 2001 From: jinoosss <112360739+jinoosss@users.noreply.github.com> Date: Tue, 19 Aug 2025 17:58:18 +0900 Subject: [PATCH] fix: correct MsgCall args field tag number in protobuf encoding --- src/proto/gno/vm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto/gno/vm.ts b/src/proto/gno/vm.ts index 79f24a4..edff973 100644 --- a/src/proto/gno/vm.ts +++ b/src/proto/gno/vm.ts @@ -121,7 +121,7 @@ export const MsgCall: MessageFns = { } if (message.args) { for (const v of message.args) { - writer.uint32(42).string(v!); + writer.uint32(50).string(v!); } } return writer;