Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Aug 22, 2024
1 parent abdc72a commit 83f73df
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ tokio = { version = "1.21", default-features = false, features = [
"rt-multi-thread",
] }
serde_json = "1.0.94"
serde = { version = "1.0", default-features = false }
serde = { version = "1.0", default-features = false, features = ["derive"] }
futures = "0.3"
url = "2.3"
thiserror = "1.0.61"
Expand Down
1 change: 1 addition & 0 deletions bin/host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ tracing-subscriber = "0.3.18"
dotenv = "0.15.0"
clap = { version = "4.5.7", features = ["derive", "env"] }
serde_json.workspace = true
serde.workspace = true
bincode = "1.3.3"
csv = "1.1"
# workspace
Expand Down
2 changes: 0 additions & 2 deletions bin/host/src/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ pub fn process_execution_report(
kzg_point_eval_cycles,
};

let report_file_exists = report_path.exists();

// Open the file for appending or create it if it doesn't exist
let file = OpenOptions::new().append(true).create(true).open(report_path)?;

Expand Down

0 comments on commit 83f73df

Please sign in to comment.