Skip to content

Commit d3ea16c

Browse files
authored
fix beacon chain tests (#8392)
1 parent 27dce06 commit d3ea16c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

beacon_node/beacon_chain/tests/store_tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1407,7 +1407,7 @@ async fn proposer_shuffling_changing_with_lookahead() {
14071407

14081408
let consolidation_request: ConsolidationRequest = ConsolidationRequest {
14091409
source_address: validator_to_topup
1410-
.get_execution_withdrawal_address(spec)
1410+
.get_execution_withdrawal_address(spec, ForkName::Fulu)
14111411
.unwrap(),
14121412
source_pubkey: validator_to_topup.pubkey,
14131413
target_pubkey: validator_to_topup.pubkey,
@@ -1486,7 +1486,7 @@ async fn proposer_shuffling_changing_with_lookahead() {
14861486
let validator = current_epoch_state
14871487
.get_validator(validator_to_topup_index)
14881488
.unwrap();
1489-
assert!(validator.has_compounding_withdrawal_credential(spec));
1489+
assert!(validator.has_compounding_withdrawal_credential(spec, ForkName::Fulu));
14901490
assert_eq!(validator.effective_balance, 95_000_000_000);
14911491

14921492
// The shuffling for the current epoch from `prev_epoch_state` should match the shuffling

0 commit comments

Comments
 (0)