Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(octez): introduce feature 'disable-slow-pvm'
Browse files Browse the repository at this point in the history
huancheng-trili committed Jan 14, 2025
1 parent fb45104 commit b1b5678
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions crates/octez/Cargo.toml
Original file line number Diff line number Diff line change
@@ -31,3 +31,4 @@ tokio.workspace = true

[features]
disable-alpha = []
disable-slow-pvm = []
2 changes: 2 additions & 0 deletions crates/octez/src/async/rollup.rs
Original file line number Diff line number Diff line change
@@ -221,6 +221,8 @@ impl OctezRollup {
&self.rpc_endpoint.port().to_string(),
"--acl-override",
"allow-all",
#[cfg(feature = "disable-slow-pvm")]
"--unsafe-disable-wasm-kernel-checks",
]);
if let Some(boot_sector_file) = boot_sector_file {
command.args(["--boot-sector-file", &boot_sector_file.to_string_lossy()]);

0 comments on commit b1b5678

Please sign in to comment.