Skip to content

Commit

Permalink
feat(cognitarium): specify max_insert_data_byte_size limit
Browse files Browse the repository at this point in the history
  • Loading branch information
ccamel authored and amimart committed Apr 20, 2023
1 parent 2b0231d commit 5c46dd8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions contracts/okp4-cognitarium/src/msg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Uint128>,
/// 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<Uint128>,

}

Expand Down

0 comments on commit 5c46dd8

Please sign in to comment.