Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove accept public input as proven field #39

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/citrea_config/rollup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ pub struct RunnerConfig {
pub sequencer_client_url: String,
/// Saves sequencer soft confirmations if set to true
pub include_tx_body: bool,
/// Only true for tests
pub accept_public_input_as_proven: Option<bool>,
/// Number of blocks to request during sync
#[serde(default = "default_sync_blocks_count")]
pub sync_blocks_count: u64,
Expand Down
1 change: 0 additions & 1 deletion src/framework.rs
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,6 @@ impl TestFramework {
runner_bind_host, sequencer_rollup.rpc.bind_port,
),
include_tx_body: true,
accept_public_input_as_proven: Some(true),
sync_blocks_count: 10,
pruning_config: None,
});
Expand Down
Loading