-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: set config pointers for size validation
- Loading branch information
1 parent
91a59d3
commit 1360106
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/// Deal with config pointers. | ||
use std::sync::OnceLock; | ||
|
||
use papyrus_config::dumping::ser_pointer_target_param; | ||
use papyrus_config::{ParamPath, SerializedParam}; | ||
|
||
type ConfigPointers = Vec<((ParamPath, SerializedParam), Vec<ParamPath>)>; | ||
|
||
const MAX_BYTECODE_SIZE: usize = 50_000; | ||
const MAX_RAW_CLASS_SIZE: usize = 1_000_000; | ||
|
||
pub fn config_pointers() -> ConfigPointers { | ||
static CONFIG_POINTERS: OnceLock<ConfigPointers> = OnceLock::new(); | ||
CONFIG_POINTERS | ||
.get_or_init(|| { | ||
vec![ | ||
( | ||
ser_pointer_target_param( | ||
"max_bytecode_size", | ||
&MAX_BYTECODE_SIZE, | ||
"The maximum bytecode size allowed for a contract.", | ||
), | ||
vec![ | ||
"gateway_config.stateless_tx_validator_config.max_bytecode_size".to_owned(), | ||
"gateway_config.gateway_compiler_config.max_bytecode_size".to_owned(), | ||
], | ||
), | ||
( | ||
ser_pointer_target_param( | ||
"max_raw_class_size", | ||
&MAX_RAW_CLASS_SIZE, | ||
"The maximum raw class size allowed for a contract.", | ||
), | ||
vec![ | ||
"gateway_config.stateless_tx_validator_config.max_raw_class_size" | ||
.to_owned(), | ||
"gateway_config.gateway_compiler_config.max_raw_class_size".to_owned(), | ||
], | ||
), | ||
] | ||
}) | ||
.to_vec() | ||
} |