Skip to main content

concordium_std/
constants.rs

1//! Chain constants that impose limits on various aspects of smart contract
2//! execution.
3
4/// Maximum log size.
5pub const MAX_LOG_SIZE: usize = 512;
6
7/// Maximum number of log items.
8pub const MAX_NUM_LOGS: usize = 64;