nimbus-eth2/beacon_chain
Etan Kissling 6cfcd873fd
avoid rejecting empty era file in verification
`batchVerify`'s precondition is a non-empty signature list:

```nim
  if input.len == 0:
    # Spec precondition
    return false
```

This means that in eras without any blocks (as has happened on Goerli),
calling it leads to era files being reported as invalid.
2024-04-02 17:49:46 +02:00
..
2024-03-19 14:22:07 +01:00
2024-03-27 15:53:02 +00:00
2024-03-28 03:34:06 +00:00
2024-03-03 02:04:45 +01:00
2024-01-22 17:34:54 +01:00
2024-01-05 10:08:38 +01:00
2024-02-21 20:06:19 +01:00
2024-03-28 05:23:23 +00:00