Skip to content

Commit

Permalink
Use kzgnoop
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Oct 19, 2023
1 parent c133b5e commit f083f7b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ public static Spec create(
.altairBuilder(a -> a.altairForkEpoch(UInt64.ZERO))
.bellatrixBuilder(b -> b.bellatrixForkEpoch(UInt64.ZERO))
.capellaBuilder(c -> c.capellaForkEpoch(UInt64.ZERO))
.denebBuilder(d -> d.denebForkEpoch(UInt64.ZERO));
.denebBuilder(d -> d.denebForkEpoch(UInt64.ZERO).kzgNoop(true));
};
return create(
SpecConfigLoader.loadConfig(network.configName(), defaultModifier.andThen(configModifier)),
Expand Down Expand Up @@ -316,7 +316,7 @@ private static SpecConfigDeneb getDenebSpecConfig(
.altairBuilder(a -> a.altairForkEpoch(UInt64.ZERO))
.bellatrixBuilder(b -> b.bellatrixForkEpoch(UInt64.ZERO))
.capellaBuilder(c -> c.capellaForkEpoch(capellaForkEpoch))
.denebBuilder(d -> d.denebForkEpoch(denebForkEpoch)));
.denebBuilder(d -> d.denebForkEpoch(denebForkEpoch).kzgNoop(true)));
}

private static SpecConfigDeneb getDenebSpecConfig(
Expand All @@ -329,7 +329,7 @@ private static SpecConfigDeneb getDenebSpecConfig(
.altairBuilder(a -> a.altairForkEpoch(UInt64.ZERO))
.bellatrixBuilder(b -> b.bellatrixForkEpoch(UInt64.ZERO))
.capellaBuilder(c -> c.capellaForkEpoch(UInt64.ZERO))
.denebBuilder(d -> d.denebForkEpoch(UInt64.ZERO));
.denebBuilder(d -> d.denebForkEpoch(UInt64.ZERO).kzgNoop(true));
configAdapter.accept(builder);
}));
}
Expand Down

0 comments on commit f083f7b

Please sign in to comment.