@@ -229,9 +229,9 @@ public static IEnumerable<TestCaseData> ChiadoActivations
229229 yield return new TestCaseData ( ( ForkActivation ) ( 1 , ChiadoSpecProvider . CancunTimestamp - 1 ) ) { TestName = "Before Cancun" } ;
230230 yield return new TestCaseData ( ( ForkActivation ) ( 1 , ChiadoSpecProvider . CancunTimestamp ) ) { TestName = "Cancun" } ;
231231 yield return new TestCaseData ( ( ForkActivation ) ( 1 , ChiadoSpecProvider . CancunTimestamp + 100000000 ) ) { TestName = "Future" } ;
232- // yield return new TestCaseData((ForkActivation)(1, ChiadoSpecProvider.PragueTimestamp - 1)) { TestName = "Before Prague" };
233- // yield return new TestCaseData((ForkActivation)(1, ChiadoSpecProvider.PragueTimestamp)) { TestName = "Prague" };
234- // yield return new TestCaseData((ForkActivation)(1, ChiadoSpecProvider.PragueTimestamp + 100000000)) { TestName = "Future" };
232+ yield return new TestCaseData ( ( ForkActivation ) ( 1 , ChiadoSpecProvider . PragueTimestamp - 1 ) ) { TestName = "Before Prague" } ;
233+ yield return new TestCaseData ( ( ForkActivation ) ( 1 , ChiadoSpecProvider . PragueTimestamp ) ) { TestName = "Prague" } ;
234+ yield return new TestCaseData ( ( ForkActivation ) ( 1 , ChiadoSpecProvider . PragueTimestamp + 100000000 ) ) { TestName = "Future" } ;
235235 }
236236 }
237237
@@ -260,9 +260,10 @@ public void Chiado_loads_properly(ForkActivation forkActivation)
260260
261261 VerifyGnosisShanghaiSpecifics ( preShanghaiSpec , postShanghaiSpec ) ;
262262 VerifyGnosisCancunSpecifics ( postCancunSpec ) ;
263- // VerifyGnosisPragueSpecifics(prePragueSpec, postPragueSpec, ChiadoSpecProvider.FeeCollector);
263+ VerifyGnosisPragueSpecifics ( prePragueSpec , postPragueSpec , ChiadoSpecProvider . FeeCollector ) ;
264264 GetTransitionTimestamps ( chainSpec . Parameters ) . Should ( ) . AllSatisfy (
265265 static t => ValidateSlotByTimestamp ( t , ChiadoSpecProvider . BeaconChainGenesisTimestampConst , GnosisBlockTime ) . Should ( ) . BeTrue ( ) ) ;
266+ Assert . That ( postPragueSpec . DepositContractAddress , Is . EqualTo ( new Address ( "0xb97036A26259B7147018913bD58a774cf91acf25" ) ) ) ;
266267 }
267268
268269 public static IEnumerable < TestCaseData > GnosisActivations
@@ -325,7 +326,9 @@ public void Gnosis_loads_properly(ForkActivation forkActivation)
325326
326327 VerifyGnosisShanghaiSpecifics ( preShanghaiSpec , postShanghaiSpec ) ;
327328 VerifyGnosisCancunSpecifics ( postCancunSpec ) ;
329+ // ToDo uncomment in Pectra
328330 // VerifyGnosisPragueSpecifics(prePragueSpec, postPragueSpec, GnosisSpecProvider.FeeCollector);
331+ // Assert.That(postPragueSpec.DepositContractAddress, Is.EqualTo(new Address("0x0B98057eA310F4d31F2a452B414647007d1645d9")));
329332 GetTransitionTimestamps ( chainSpec . Parameters ) . Should ( ) . AllSatisfy (
330333 static t => ValidateSlotByTimestamp ( t , GnosisSpecProvider . BeaconChainGenesisTimestampConst , GnosisBlockTime ) . Should ( ) . BeTrue ( ) ) ;
331334 }
0 commit comments