Fix `verify_slashable_vote_data`
The first field of `AttestationDataAndCustodyBit` should be an `AttestationData` object, not an `SlashableVoteData` object.
This commit is contained in:
parent
78e73633bc
commit
f92735454e
|
@ -1039,8 +1039,8 @@ def verify_slashable_vote_data(state: BeaconState, vote_data: SlashableVoteData)
|
||||||
aggregate_pubkey([state.validators[i].pubkey for i in vote_data.custody_bit_1_indices]),
|
aggregate_pubkey([state.validators[i].pubkey for i in vote_data.custody_bit_1_indices]),
|
||||||
],
|
],
|
||||||
messages=[
|
messages=[
|
||||||
hash_tree_root(AttestationDataAndCustodyBit(vote_data, False)),
|
hash_tree_root(AttestationDataAndCustodyBit(vote_data.data, False)),
|
||||||
hash_tree_root(AttestationDataAndCustodyBit(vote_data, True)),
|
hash_tree_root(AttestationDataAndCustodyBit(vote_data.data, True)),
|
||||||
],
|
],
|
||||||
signature=vote_data.aggregate_signature,
|
signature=vote_data.aggregate_signature,
|
||||||
domain=get_domain(
|
domain=get_domain(
|
||||||
|
|
Loading…
Reference in New Issue