From 4722b4e25b4c361d7fe9c419b3dc668e868fb432 Mon Sep 17 00:00:00 2001 From: Charlie <31941002+CharlieMc0@users.noreply.github.com> Date: Mon, 2 Oct 2023 13:19:46 -0700 Subject: [PATCH] chore: changed maxNestedMsgs (#1222) * Changed maxNestedMsgs --- app/ante/authz.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ante/authz.go b/app/ante/authz.go index e43baa1baa..c81dcf97b5 100644 --- a/app/ante/authz.go +++ b/app/ante/authz.go @@ -11,7 +11,7 @@ import ( ) // maxNestedMsgs defines a cap for the number of nested messages on a MsgExec message -const maxNestedMsgs = 7 +const maxNestedMsgs = 15 // AuthzLimiterDecorator blocks certain msg types from being granted or executed // within the authorization module.