mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-02-12 22:46:59 +00:00
Fix off-by-one error in determining the sync committee when POSTing sync committee messages through the REST API
This commit is contained in:
parent
5ef2ce4069
commit
542e645bed
@ -268,7 +268,7 @@ proc sendSyncCommitteeMessages*(node: BeaconNode,
|
||||
|
||||
for index, msg in msgs.pairs():
|
||||
if msg.validator_index < lenu64(state.data.validators):
|
||||
let msgPeriod = sync_committee_period(msg.slot)
|
||||
let msgPeriod = sync_committee_period(msg.slot + 1)
|
||||
if msgPeriod == curPeriod:
|
||||
resCur[msg.validator_index] = index
|
||||
elif msgPeriod == nextPeriod:
|
||||
|
Loading…
x
Reference in New Issue
Block a user