From 8135f90e3d9931f50bae8df14b0bbbd1d122eecf Mon Sep 17 00:00:00 2001 From: Calvin Lau Date: Wed, 26 Jan 2022 04:32:02 +0800 Subject: [PATCH] Problem: MsgExec parser can cause indexer to halt Solution: (Fix #674) Disable MsgExec command at blocker tx parser --- usecase/parser/msg.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usecase/parser/msg.go b/usecase/parser/msg.go index 90745e9c..3d27cb70 100644 --- a/usecase/parser/msg.go +++ b/usecase/parser/msg.go @@ -119,7 +119,8 @@ func ParseBlockTxsMsgToCommands( // cosmos authz "/cosmos.authz.v1beta1.MsgGrant", "/cosmos.authz.v1beta1.MsgRevoke", - "/cosmos.authz.v1beta1.MsgExec", + // FIXME: https://github.com/crypto-com/chain-indexing/issues/673 + //"/cosmos.authz.v1beta1.MsgExec", // cosmos feegrant "/cosmos.feegrant.v1beta1.MsgGrantAllowance",