diff --git a/x/logic/keeper/grpc_query_params_test.go b/x/logic/keeper/grpc_query_params_test.go index 5c2976a3a..d2e363826 100644 --- a/x/logic/keeper/grpc_query_params_test.go +++ b/x/logic/keeper/grpc_query_params_test.go @@ -44,6 +44,7 @@ func TestGRPCParams(t *testing.T) { types.WithMaxSize(math.NewUint(2)), types.WithMaxResultCount(math.NewUint(3)), types.WithMaxUserOutputSize(math.NewUint(4)), + types.WithMaxVariables(math.NewUint(5)), ), ), }, diff --git a/x/logic/types/params_test.go b/x/logic/types/params_test.go index dad490d67..0d1449977 100644 --- a/x/logic/types/params_test.go +++ b/x/logic/types/params_test.go @@ -40,6 +40,7 @@ func TestValidateParams(t *testing.T) { types.WithMaxSize(math.NewUint(2)), types.WithMaxResultCount(math.NewUint(3)), types.WithMaxUserOutputSize(math.NewUint(4)), + types.WithMaxVariables(math.NewUint(5)), ), ), expectErr: false,