Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unwrap slice #6

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions ssv/spectest/tests/runner/consensus/future_decided_sc.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func futureDecidedSyncCommitteeContributionSC() *comparable.StateComparison {
cd := testingutils.TestSyncCommitteeContributionConsensusData

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.SyncCommitteeContributionRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -91,7 +91,7 @@ func futureDecidedSyncCommitteeSC() *comparable.StateComparison {
cdBytes := testingutils.TestSyncCommitteeConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.SyncCommitteeRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -160,7 +160,7 @@ func futureDecidedAggregatorSC() *comparable.StateComparison {
cdBytes := testingutils.TestAggregatorConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.AggregatorRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -233,7 +233,7 @@ func futureDecidedAttesterSC() *comparable.StateComparison {
cdBytes := testingutils.TestAttesterConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.AttesterRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -302,7 +302,7 @@ func futureDecidedProposerSC(version spec.DataVersion) *comparable.StateComparis
cdBytes := testingutils.TestProposerConsensusDataBytsV(version)

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.ProposerRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -375,7 +375,7 @@ func futureDecidedBlindedProposerSC(version spec.DataVersion) *comparable.StateC
cdBytes := testingutils.TestProposerBlindedBlockConsensusDataBytsV(version)

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.ProposerBlindedBlockRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down
10 changes: 5 additions & 5 deletions ssv/spectest/tests/runner/consensus/post_decided_sc.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func postDecidedSyncCommitteeSC() *comparable.StateComparison {
cdBytes := testingutils.TestSyncCommitteeConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.SyncCommitteeRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -134,7 +134,7 @@ func postDecidedAggregatorSC() *comparable.StateComparison {
cdBytes := testingutils.TestAggregatorConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.AggregatorRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -192,7 +192,7 @@ func postDecidedAttesterSC() *comparable.StateComparison {
cdBytes := testingutils.TestAttesterConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.AttesterRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -250,7 +250,7 @@ func postDecidedProposerSC(version spec.DataVersion) *comparable.StateComparison
cdBytes := testingutils.TestProposerConsensusDataBytsV(version)

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.ProposerRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -308,7 +308,7 @@ func postDecidedBlindedProposerSC(version spec.DataVersion) *comparable.StateCom
cdBytes := testingutils.TestProposerBlindedBlockConsensusDataBytsV(version)

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.ProposerBlindedBlockRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down
120 changes: 60 additions & 60 deletions ssv/spectest/tests/runner/consensus/post_finish.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ func PostFinish() tests.SpecTest {
Duty: &testingutils.TestingSyncCommitteeContributionDuty,
Messages: append(
testingutils.SSVDecidingMsgsV(testingutils.TestSyncCommitteeContributionConsensusData, ks, types.BNRoleSyncCommitteeContribution),
[]*types.SSVMessage{ // post consensus
testingutils.SSVMsgSyncCommitteeContribution(nil, testingutils.PostConsensusSyncCommitteeContributionMsg(ks.Shares[1], 1, ks)),
testingutils.SSVMsgSyncCommitteeContribution(nil, testingutils.PostConsensusSyncCommitteeContributionMsg(ks.Shares[2], 2, ks)),
testingutils.SSVMsgSyncCommitteeContribution(nil, testingutils.PostConsensusSyncCommitteeContributionMsg(ks.Shares[3], 3, ks)),
testingutils.SSVMsgSyncCommitteeContribution(
testingutils.TestingCommitMultiSignerMessageWithIdentifierAndFullData(
[]*bls.SecretKey{ks.Shares[4]}, []types.OperatorID{4}, testingutils.SyncCommitteeContributionMsgID,
testingutils.TestSyncCommitteeContributionConsensusDataByts,
), nil),
}...,
// post consensus
testingutils.SSVMsgSyncCommitteeContribution(nil, testingutils.PostConsensusSyncCommitteeContributionMsg(ks.Shares[1], 1, ks)),
testingutils.SSVMsgSyncCommitteeContribution(nil, testingutils.PostConsensusSyncCommitteeContributionMsg(ks.Shares[2], 2, ks)),
testingutils.SSVMsgSyncCommitteeContribution(nil, testingutils.PostConsensusSyncCommitteeContributionMsg(ks.Shares[3], 3, ks)),
// commit msg
testingutils.SSVMsgSyncCommitteeContribution(
testingutils.TestingCommitMultiSignerMessageWithIdentifierAndFullData(
[]*bls.SecretKey{ks.Shares[4]}, []types.OperatorID{4}, testingutils.SyncCommitteeContributionMsgID,
testingutils.TestSyncCommitteeContributionConsensusDataByts,
), nil),
),
PostDutyRunnerStateRoot: postFinishSyncCommitteeContributionSC().Root(),
PostDutyRunnerState: postFinishSyncCommitteeContributionSC().ExpectedState,
Expand All @@ -54,16 +54,16 @@ func PostFinish() tests.SpecTest {
Duty: &testingutils.TestingSyncCommitteeDuty,
Messages: append(
testingutils.SSVDecidingMsgsV(testingutils.TestSyncCommitteeConsensusData, ks, types.BNRoleSyncCommittee),
[]*types.SSVMessage{ // post consensus
testingutils.SSVMsgSyncCommittee(nil, testingutils.PostConsensusSyncCommitteeMsg(ks.Shares[1], 1)),
testingutils.SSVMsgSyncCommittee(nil, testingutils.PostConsensusSyncCommitteeMsg(ks.Shares[2], 2)),
testingutils.SSVMsgSyncCommittee(nil, testingutils.PostConsensusSyncCommitteeMsg(ks.Shares[3], 3)),
testingutils.SSVMsgSyncCommittee(
testingutils.TestingCommitMultiSignerMessageWithIdentifierAndFullData(
[]*bls.SecretKey{ks.Shares[4]}, []types.OperatorID{4}, testingutils.SyncCommitteeMsgID,
testingutils.TestSyncCommitteeConsensusDataByts,
), nil),
}...,
// post consensus
testingutils.SSVMsgSyncCommittee(nil, testingutils.PostConsensusSyncCommitteeMsg(ks.Shares[1], 1)),
testingutils.SSVMsgSyncCommittee(nil, testingutils.PostConsensusSyncCommitteeMsg(ks.Shares[2], 2)),
testingutils.SSVMsgSyncCommittee(nil, testingutils.PostConsensusSyncCommitteeMsg(ks.Shares[3], 3)),
// commit msg
testingutils.SSVMsgSyncCommittee(
testingutils.TestingCommitMultiSignerMessageWithIdentifierAndFullData(
[]*bls.SecretKey{ks.Shares[4]}, []types.OperatorID{4}, testingutils.SyncCommitteeMsgID,
testingutils.TestSyncCommitteeConsensusDataByts,
), nil),
),
PostDutyRunnerStateRoot: postFinishSyncCommitteeSC().Root(),
PostDutyRunnerState: postFinishSyncCommitteeSC().ExpectedState,
Expand All @@ -80,16 +80,16 @@ func PostFinish() tests.SpecTest {
Duty: &testingutils.TestingAggregatorDuty,
Messages: append(
testingutils.SSVDecidingMsgsV(testingutils.TestAggregatorConsensusData, ks, types.BNRoleAggregator),
[]*types.SSVMessage{ // post consensus
testingutils.SSVMsgAggregator(nil, testingutils.PostConsensusAggregatorMsg(ks.Shares[1], 1)),
testingutils.SSVMsgAggregator(nil, testingutils.PostConsensusAggregatorMsg(ks.Shares[2], 2)),
testingutils.SSVMsgAggregator(nil, testingutils.PostConsensusAggregatorMsg(ks.Shares[3], 3)),
testingutils.SSVMsgAggregator(
testingutils.TestingCommitMultiSignerMessageWithIdentifierAndFullData(
[]*bls.SecretKey{ks.Shares[4]}, []types.OperatorID{4}, testingutils.AggregatorMsgID,
testingutils.TestAggregatorConsensusDataByts,
), nil),
}...,
// post consensus
testingutils.SSVMsgAggregator(nil, testingutils.PostConsensusAggregatorMsg(ks.Shares[1], 1)),
testingutils.SSVMsgAggregator(nil, testingutils.PostConsensusAggregatorMsg(ks.Shares[2], 2)),
testingutils.SSVMsgAggregator(nil, testingutils.PostConsensusAggregatorMsg(ks.Shares[3], 3)),
// commit msg
testingutils.SSVMsgAggregator(
testingutils.TestingCommitMultiSignerMessageWithIdentifierAndFullData(
[]*bls.SecretKey{ks.Shares[4]}, []types.OperatorID{4}, testingutils.AggregatorMsgID,
testingutils.TestAggregatorConsensusDataByts,
), nil),
),
PostDutyRunnerStateRoot: postFinishAggregatorSC().Root(),
PostDutyRunnerState: postFinishAggregatorSC().ExpectedState,
Expand All @@ -107,16 +107,16 @@ func PostFinish() tests.SpecTest {
Duty: &testingutils.TestingAttesterDuty,
Messages: append(
testingutils.SSVDecidingMsgsV(testingutils.TestAttesterConsensusData, ks, types.BNRoleAttester),
[]*types.SSVMessage{ // post consensus
testingutils.SSVMsgAttester(nil, testingutils.PostConsensusAttestationMsg(ks.Shares[1], 1, qbft.FirstHeight)),
testingutils.SSVMsgAttester(nil, testingutils.PostConsensusAttestationMsg(ks.Shares[2], 2, qbft.FirstHeight)),
testingutils.SSVMsgAttester(nil, testingutils.PostConsensusAttestationMsg(ks.Shares[3], 3, qbft.FirstHeight)),
testingutils.SSVMsgAttester(
testingutils.TestingCommitMultiSignerMessageWithIdentifierAndFullData(
[]*bls.SecretKey{ks.Shares[4]}, []types.OperatorID{4}, testingutils.AttesterMsgID,
testingutils.TestAttesterConsensusDataByts,
), nil),
}...,
// post consensus
testingutils.SSVMsgAttester(nil, testingutils.PostConsensusAttestationMsg(ks.Shares[1], 1, qbft.FirstHeight)),
testingutils.SSVMsgAttester(nil, testingutils.PostConsensusAttestationMsg(ks.Shares[2], 2, qbft.FirstHeight)),
testingutils.SSVMsgAttester(nil, testingutils.PostConsensusAttestationMsg(ks.Shares[3], 3, qbft.FirstHeight)),
// commit msg
testingutils.SSVMsgAttester(
testingutils.TestingCommitMultiSignerMessageWithIdentifierAndFullData(
[]*bls.SecretKey{ks.Shares[4]}, []types.OperatorID{4}, testingutils.AttesterMsgID,
testingutils.TestAttesterConsensusDataByts,
), nil),
),
PostDutyRunnerStateRoot: postFinishAttesterSC().Root(),
PostDutyRunnerState: postFinishAttesterSC().ExpectedState,
Expand All @@ -138,16 +138,16 @@ func PostFinish() tests.SpecTest {
Duty: testingutils.TestingProposerDutyV(version),
Messages: append(
testingutils.SSVDecidingMsgsV(testingutils.TestProposerConsensusDataV(version), ks, types.BNRoleProposer), // consensus
[]*types.SSVMessage{ // post consensus
testingutils.SSVMsgProposer(nil, testingutils.PostConsensusProposerMsgV(ks.Shares[1], 1, version)),
testingutils.SSVMsgProposer(nil, testingutils.PostConsensusProposerMsgV(ks.Shares[2], 2, version)),
testingutils.SSVMsgProposer(nil, testingutils.PostConsensusProposerMsgV(ks.Shares[3], 3, version)),
testingutils.SSVMsgProposer(
testingutils.TestingCommitMultiSignerMessageWithIdentifierAndFullData(
[]*bls.SecretKey{ks.Shares[4]}, []types.OperatorID{4}, testingutils.ProposerMsgID,
testingutils.TestProposerConsensusDataBytsV(version),
), nil),
}...,
// post consensus
testingutils.SSVMsgProposer(nil, testingutils.PostConsensusProposerMsgV(ks.Shares[1], 1, version)),
testingutils.SSVMsgProposer(nil, testingutils.PostConsensusProposerMsgV(ks.Shares[2], 2, version)),
testingutils.SSVMsgProposer(nil, testingutils.PostConsensusProposerMsgV(ks.Shares[3], 3, version)),
// commit msg
testingutils.SSVMsgProposer(
testingutils.TestingCommitMultiSignerMessageWithIdentifierAndFullData(
[]*bls.SecretKey{ks.Shares[4]}, []types.OperatorID{4}, testingutils.ProposerMsgID,
testingutils.TestProposerConsensusDataBytsV(version),
), nil),
),
PostDutyRunnerStateRoot: postFinishProposerSC(version).Root(),
PostDutyRunnerState: postFinishProposerSC(version).ExpectedState,
Expand All @@ -169,16 +169,16 @@ func PostFinish() tests.SpecTest {
Duty: testingutils.TestingProposerDutyV(version),
Messages: append(
testingutils.SSVDecidingMsgsV(testingutils.TestProposerBlindedBlockConsensusDataV(version), ks, types.BNRoleProposer), // consensus
[]*types.SSVMessage{ // post consensus
testingutils.SSVMsgProposer(nil, testingutils.PostConsensusProposerMsgV(ks.Shares[1], 1, version)),
testingutils.SSVMsgProposer(nil, testingutils.PostConsensusProposerMsgV(ks.Shares[2], 2, version)),
testingutils.SSVMsgProposer(nil, testingutils.PostConsensusProposerMsgV(ks.Shares[3], 3, version)),
testingutils.SSVMsgProposer(
testingutils.TestingCommitMultiSignerMessageWithIdentifierAndFullData(
[]*bls.SecretKey{ks.Shares[4]}, []types.OperatorID{4}, testingutils.ProposerMsgID,
testingutils.TestProposerBlindedBlockConsensusDataBytsV(version),
), nil),
}...,
// post consensus
testingutils.SSVMsgProposer(nil, testingutils.PostConsensusProposerMsgV(ks.Shares[1], 1, version)),
testingutils.SSVMsgProposer(nil, testingutils.PostConsensusProposerMsgV(ks.Shares[2], 2, version)),
testingutils.SSVMsgProposer(nil, testingutils.PostConsensusProposerMsgV(ks.Shares[3], 3, version)),
// commit msg
testingutils.SSVMsgProposer(
testingutils.TestingCommitMultiSignerMessageWithIdentifierAndFullData(
[]*bls.SecretKey{ks.Shares[4]}, []types.OperatorID{4}, testingutils.ProposerMsgID,
testingutils.TestProposerBlindedBlockConsensusDataBytsV(version),
), nil),
),
PostDutyRunnerStateRoot: postFinishBlindedProposerSC(version).Root(),
PostDutyRunnerState: postFinishBlindedProposerSC(version).ExpectedState,
Expand Down
12 changes: 6 additions & 6 deletions ssv/spectest/tests/runner/consensus/post_finish_sc.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func postFinishSyncCommitteeContributionSC() *comparable.StateComparison {
cdBytes := testingutils.TestSyncCommitteeContributionConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.SyncCommitteeContributionRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -80,7 +80,7 @@ func postFinishSyncCommitteeSC() *comparable.StateComparison {
cdBytes := testingutils.TestSyncCommitteeConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.SyncCommitteeRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -142,7 +142,7 @@ func postFinishAggregatorSC() *comparable.StateComparison {
cdBytes := testingutils.TestAggregatorConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.AggregatorRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -204,7 +204,7 @@ func postFinishAttesterSC() *comparable.StateComparison {
cdBytes := testingutils.TestAttesterConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.AttesterRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -266,7 +266,7 @@ func postFinishProposerSC(version spec.DataVersion) *comparable.StateComparison
cdBytes := testingutils.TestProposerConsensusDataBytsV(version)

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.ProposerRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -328,7 +328,7 @@ func postFinishBlindedProposerSC(version spec.DataVersion) *comparable.StateComp
cdBytes := testingutils.TestProposerBlindedBlockConsensusDataBytsV(version)

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.ProposerBlindedBlockRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func validDecided7OperatorsSyncCommitteeContributionSC() *comparable.StateCompar
cdBytes := testingutils.TestSyncCommitteeContributionConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.SyncCommitteeContributionRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -68,7 +68,7 @@ func validDecided7OperatorsSyncCommitteeSC() *comparable.StateComparison {
cdBytes := testingutils.TestSyncCommitteeConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.SyncCommitteeRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -118,7 +118,7 @@ func validDecided7OperatorsAggregatorSC() *comparable.StateComparison {
cdBytes := testingutils.TestAggregatorConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.AggregatorRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -168,7 +168,7 @@ func validDecided7OperatorsAttesterSC() *comparable.StateComparison {
cdBytes := testingutils.TestAttesterConsensusDataByts

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.AttesterRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -218,7 +218,7 @@ func validDecided7OperatorsProposerSC(version spec.DataVersion) *comparable.Stat
cdBytes := testingutils.TestProposerConsensusDataBytsV(version)

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.ProposerRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down Expand Up @@ -268,7 +268,7 @@ func validDecided7OperatorsBlindedProposerSC(version spec.DataVersion) *comparab
cdBytes := testingutils.TestProposerBlindedBlockConsensusDataBytsV(version)

return &comparable.StateComparison{
ExpectedState: func() types.Root {
ExpectedState: func() ssv.Runner {
ret := testingutils.ProposerBlindedBlockRunner(ks)
ret.GetBaseRunner().State = &ssv.State{
PreConsensusContainer: ssvcomparable.SetMessagesInContainer(
Expand Down
Loading