From 5c46dd803155991f54d28684692ab1e35d2ab0ca Mon Sep 17 00:00:00 2001 From: ccamel Date: Tue, 18 Apr 2023 22:50:16 +0200 Subject: [PATCH] feat(cognitarium): specify max_insert_data_byte_size limit --- contracts/okp4-cognitarium/src/msg.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contracts/okp4-cognitarium/src/msg.rs b/contracts/okp4-cognitarium/src/msg.rs index cdc516f7..3c6f5642 100644 --- a/contracts/okp4-cognitarium/src/msg.rs +++ b/contracts/okp4-cognitarium/src/msg.rs @@ -60,6 +60,9 @@ pub struct StoreLimits { /// The maximum number of variables a query can select. /// If `None`, there is no limit on the number of variables. pub max_query_variable_count: Option, + /// The maximum number of bytes an insert data query can contains. + /// If `None`, there is no limit on the number of bytes. + pub max_insert_data_byte_size: Option, }