Skip to content

Commit 8938ed3

Browse files
authored
Enable payload attestation tests for mainnet (#4544)
Tests was disabled as part of #4495 but they should be fixed by #4496 this PR re-enables payload attestation tests for mainnet
1 parent c66f5ec commit 8938ed3

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

tests/core/pyspec/eth2spec/test/gloas/block_processing/test_process_payload_attestation.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
always_bls,
33
spec_state_test,
44
with_gloas_and_later,
5-
with_presets,
65
)
7-
from eth2spec.test.helpers.constants import MINIMAL
86
from eth2spec.test.helpers.keys import privkeys
97
from eth2spec.utils.ssz.ssz_typing import Bitvector
108

@@ -109,7 +107,6 @@ def prepare_signed_payload_attestation(
109107
@with_gloas_and_later
110108
@spec_state_test
111109
@always_bls
112-
@with_presets([MINIMAL], reason="broken on mainnet")
113110
def test_process_payload_attestation_payload_present(spec, state):
114111
"""
115112
Test basic valid payload attestation processing
@@ -124,7 +121,6 @@ def test_process_payload_attestation_payload_present(spec, state):
124121
@with_gloas_and_later
125122
@spec_state_test
126123
@always_bls
127-
@with_presets([MINIMAL], reason="broken on mainnet")
128124
def test_process_payload_attestation_payload_not_present(spec, state):
129125
"""
130126
Test valid payload attestation indicating payload was not present
@@ -139,7 +135,6 @@ def test_process_payload_attestation_payload_not_present(spec, state):
139135
@with_gloas_and_later
140136
@spec_state_test
141137
@always_bls
142-
@with_presets([MINIMAL], reason="broken on mainnet")
143138
def test_process_payload_attestation_partial_participation(spec, state):
144139
"""
145140
Test valid payload attestation with only some PTC members participating
@@ -164,7 +159,6 @@ def test_process_payload_attestation_partial_participation(spec, state):
164159

165160
@with_gloas_and_later
166161
@spec_state_test
167-
@with_presets([MINIMAL], reason="maybe broken on mainnet")
168162
def test_process_payload_attestation_invalid_beacon_block_root(spec, state):
169163
"""
170164
Test payload attestation with wrong beacon block root fails
@@ -186,7 +180,6 @@ def test_process_payload_attestation_invalid_beacon_block_root(spec, state):
186180

187181
@with_gloas_and_later
188182
@spec_state_test
189-
@with_presets([MINIMAL], reason="maybe broken on mainnet")
190183
def test_process_payload_attestation_future_slot(spec, state):
191184
"""
192185
Test payload attestation for future slot fails
@@ -201,7 +194,6 @@ def test_process_payload_attestation_future_slot(spec, state):
201194

202195
@with_gloas_and_later
203196
@spec_state_test
204-
@with_presets([MINIMAL], reason="maybe broken on mainnet")
205197
def test_process_payload_attestation_too_old_slot(spec, state):
206198
"""
207199
Test payload attestation for slot too far in the past fails
@@ -217,7 +209,6 @@ def test_process_payload_attestation_too_old_slot(spec, state):
217209

218210
@with_gloas_and_later
219211
@spec_state_test
220-
@with_presets([MINIMAL], reason="maybe broken on mainnet")
221212
def test_process_payload_attestation_invalid_signature(spec, state):
222213
"""
223214
Test payload attestation with invalid signature fails
@@ -232,7 +223,6 @@ def test_process_payload_attestation_invalid_signature(spec, state):
232223

233224
@with_gloas_and_later
234225
@spec_state_test
235-
@with_presets([MINIMAL], reason="maybe broken on mainnet")
236226
def test_process_payload_attestation_no_attesting_indices(spec, state):
237227
"""
238228
Test payload attestation with no attesting indices fails

0 commit comments

Comments
 (0)