We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a951dc commit d692e40Copy full SHA for d692e40
eth/beacon/types/slashable_vote_data.py
@@ -16,6 +16,7 @@
16
)
17
from eth.beacon.typing import (
18
BLSSignatureIntegers,
19
+ ValidatorIndex,
20
21
from eth.beacon.constants import EMPTY_SIGNATURE
22
@@ -38,8 +39,8 @@ class SlashableVoteData(rlp.Serializable):
38
39
]
40
41
def __init__(self,
- aggregate_signature_poc_0_indices: Sequence[int],
42
- aggregate_signature_poc_1_indices: Sequence[int],
+ aggregate_signature_poc_0_indices: Sequence[ValidatorIndex],
43
+ aggregate_signature_poc_1_indices: Sequence[ValidatorIndex],
44
data: AttestationData,
45
aggregate_signature: BLSSignatureIntegers = EMPTY_SIGNATURE) -> None:
46
super().__init__(
0 commit comments