pub trait WasmChecker:
Send
+ Sync
+ 'static {
// Required method
fn validate_uploaded_wasm(
&self,
wasm_root: &Bytes32,
) -> Result<(), WasmValidityError>;
}
pub trait WasmChecker:
Send
+ Sync
+ 'static {
// Required method
fn validate_uploaded_wasm(
&self,
wasm_root: &Bytes32,
) -> Result<(), WasmValidityError>;
}