We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acf3b44 commit c266015Copy full SHA for c266015
aggregation_mode/proof_aggregator/src/backend/mod.rs
@@ -394,6 +394,16 @@ mod tests {
394
395
let current_dir = env!("CARGO_MANIFEST_DIR");
396
397
+ info!("Current dir for tests: {}", current_dir);
398
+
399
+ // Check that the config file paths exist
400
+ let ecdsa_key_path =
401
+ format!("{current_dir}/../config-files/anvil.proof-aggregator.ecdsa.key.json");
402
403
+ if !std::path::Path::new(&ecdsa_key_path).exists() {
404
+ info!("ECDSA key file does not exist at path: {}", ecdsa_key_path);
405
+ }
406
407
// These config values are taken from config-files/config-proof-aggregator.yaml
408
let config = Config {
409
eth_rpc_url: "http://localhost:8545".to_string(),
0 commit comments