From 74d530ed4a7221d096b35faec929362eea880ea8 Mon Sep 17 00:00:00 2001 From: kwt <4344285+kwtalley@users.noreply.github.com> Date: Fri, 9 Aug 2024 16:56:59 -0500 Subject: [PATCH] lint fix --- internal/provwasm/query_plugins.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/provwasm/query_plugins.go b/internal/provwasm/query_plugins.go index 5ef0d3a2f..415b6ec6e 100644 --- a/internal/provwasm/query_plugins.go +++ b/internal/provwasm/query_plugins.go @@ -18,9 +18,6 @@ import ( provwasmtypes "github.com/provenance-io/provenance/x/wasm/types" ) -// The maximum querier result size allowed, ~10MB. -const maxQueryResultSize = (10 << 20) - 1 - // Querier describes behavior for provenance smart contract query support. type Querier func(ctx sdk.Context, query json.RawMessage, version string) ([]byte, error)