eth/catalyst: enable some commented-out testcases   (#29073)

This commit is contained in:
cui 2024-02-26 17:59:03 +08:00 committed by GitHub
parent 26724fc2aa
commit edffacca8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -262,11 +262,8 @@ func TestInvalidPayloadTimestamp(t *testing.T) {
{0, true},
{parent.Time, true},
{parent.Time - 1, true},
// TODO (MariusVanDerWijden) following tests are currently broken,
// fixed in upcoming merge-kiln-v2 pr
//{parent.Time() + 1, false},
//{uint64(time.Now().Unix()) + uint64(time.Minute), false},
{parent.Time + 1, false},
{uint64(time.Now().Unix()) + uint64(time.Minute), false},
}
for i, test := range tests {