mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-04 06:13:09 +00:00
Compose: mount KZG params and set path for nodes
This commit is contained in:
parent
c027629f46
commit
6ec2dd45bd
@ -317,6 +317,13 @@ impl NodeDescriptor {
|
|||||||
cfgsync_port: u16,
|
cfgsync_port: u16,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
let mut environment = base_environment(cfgsync_port);
|
let mut environment = base_environment(cfgsync_port);
|
||||||
|
if use_kzg_mount {
|
||||||
|
// Point DA verifier to the mounted KZG params inside the container.
|
||||||
|
environment.push(EnvEntry::new(
|
||||||
|
"NOMOS_KZGRS_PARAMS_PATH",
|
||||||
|
"/kzgrs_test_params",
|
||||||
|
));
|
||||||
|
}
|
||||||
let identifier = kind.instance_name(index);
|
let identifier = kind.instance_name(index);
|
||||||
environment.extend([
|
environment.extend([
|
||||||
EnvEntry::new(
|
EnvEntry::new(
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user