From 21753d26066ec4320e892aeef577c2899a8c756d Mon Sep 17 00:00:00 2001 From: faultytolly <137398096+faultytolly@users.noreply.github.com> Date: Mon, 21 Oct 2024 10:29:54 +0200 Subject: [PATCH] fix: removed MsgSend from allowed consensus msgs (#146) Co-authored-by: Faulty Tolly <@faulttolerance.net> --- app/app.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/app.go b/app/app.go index f2eed4b..953cea2 100644 --- a/app/app.go +++ b/app/app.go @@ -12,7 +12,6 @@ import ( authzkeeper "github.com/cosmos/cosmos-sdk/x/authz/keeper" authzmodule "github.com/cosmos/cosmos-sdk/x/authz/module" evmosante "github.com/evmos/evmos/v12/app/ante" - "github.com/gogo/protobuf/proto" "github.com/gorilla/mux" "github.com/rakyll/statik/fs" abci "github.com/tendermint/tendermint/abci/types" @@ -841,7 +840,7 @@ func NewRollapp( // Admission handler for consensus messages app.setAdmissionHandler(consensus.AllowedMessagesHandler([]string{ - proto.MessageName(&banktypes.MsgSend{}), + // proto.MessageName(&banktypes.MsgSend{}), // Example of message allowed as consensus message })) if loadLatest {