Compose cfgsync: use mounted KZG proving key path

This commit is contained in:
andrussal 2025-12-07 17:33:16 +01:00
parent eb35672d93
commit 1552e11759

View File

@ -90,7 +90,9 @@ pub fn apply_topology_overrides(
cfg.old_blobs_check_interval = da.old_blobs_check_interval;
cfg.blobs_validity_duration = da.blobs_validity_duration;
cfg.global_params_path = if use_kzg_mount {
"/kzgrs_test_params/kzgrs_test_params".into()
// Compose mounts the bundle at /kzgrs_test_params; the proving key lives under
// pol/.
"/kzgrs_test_params/pol/proving_key.zkey".into()
} else {
da.global_params_path.clone()
};