Fix simulation regression due to custody_bitfield (#108)
This commit is contained in:
parent
899c8e5df9
commit
b60fa131f1
|
@ -181,7 +181,10 @@ proc makeAttestation(node: BeaconNode,
|
||||||
var attestation = Attestation(
|
var attestation = Attestation(
|
||||||
data: attestationData,
|
data: attestationData,
|
||||||
aggregate_signature: validatorSignature,
|
aggregate_signature: validatorSignature,
|
||||||
aggregation_bitfield: participationBitfield)
|
aggregation_bitfield: participationBitfield,
|
||||||
|
# Stub in phase0
|
||||||
|
custody_bitfield: newSeq[byte](participationBitfield.len)
|
||||||
|
)
|
||||||
|
|
||||||
await node.network.broadcast(topicAttestations, attestation)
|
await node.network.broadcast(topicAttestations, attestation)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue