-
Notifications
You must be signed in to change notification settings - Fork 971
Electra spec changes for v1.5.0-beta.0
#6731
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 55 commits
25feedf
4dc6e65
a9cb329
60100fc
13f9bba
e71020e
52bb581
d37733b
12c6ef1
2fcb293
21ecb58
9d5a3af
f892849
f27216f
c31f1cc
282eefb
52e602d
293db28
9b8a25f
23d331b
0c2c8c4
de01f92
1095d60
2e86585
32483d3
88bedf0
063b79c
251bca7
e4bfe71
f66e179
440e854
04b3743
3d3bc6d
2dbd3b7
0cd263f
3b788bf
7c215f8
0f26408
d65e821
26c409c
eee9218
07c039c
d4e152c
a73ecb5
f13bdfc
70917f7
22b7fcb
9e972b1
bb59e7a
1d4dc59
bba7310
ef13f0f
72bcc8a
344ba2b
a45c0f0
f4fe1b8
1205d83
3b17732
e2ff440
7df6560
4fbca37
e821e62
0b36d60
4f08ac7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1226,6 +1226,10 @@ async fn progressive_balances_cache_attester_slashing() { | |
| .apply_blocks_while(|_, state| state.finalized_checkpoint().epoch == 0) | ||
| .await | ||
| .unwrap() | ||
| // TODO(electra) The shuffling calculations changed between Altair and Electra. Without | ||
| // skipping slots this test breaks. For some reason `fork_name_unchecked` returns Altair | ||
| // initially, even though this test harness should be initialized with the most recent fork, i.e. Electra | ||
| .skip_slots(32) | ||
michaelsproul marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| // Note: This test may fail if the shuffling used changes, right now it re-runs with | ||
| // deterministic shuffling. A shuffling change my cause the slashed proposer to propose | ||
| // again in the next epoch, which results in a block processing failure | ||
|
|
@@ -1257,6 +1261,10 @@ async fn progressive_balances_cache_proposer_slashing() { | |
| .apply_blocks_while(|_, state| state.finalized_checkpoint().epoch == 0) | ||
| .await | ||
| .unwrap() | ||
| // TODO(electra) The shuffling calculations changed between Altair and Electra. Without | ||
| // skipping slots this test breaks. For some reason `fork_name_unchecked` returns Altair | ||
| // initially, even though this test harness should be initialized with the most recent fork, i.e. Electra | ||
| .skip_slots(32) | ||
|
||
| // Note: This test may fail if the shuffling used changes, right now it re-runs with | ||
| // deterministic shuffling. A shuffling change may cause the slashed proposer to propose | ||
| // again in the next epoch, which results in a block processing failure | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -85,4 +85,4 @@ MAX_ATTESTATIONS: 128 | |
| # 2**4 (= 16) | ||
| MAX_DEPOSITS: 16 | ||
| # 2**4 (= 16) | ||
| MAX_VOLUNTARY_EXITS: 16 | ||
| MAX_VOLUNTARY_EXITS: 16 | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note for reviewers: the contents of the presets and configs are copied verbatim from |
||
Uh oh!
There was an error while loading. Please reload this page.