mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
@@ -1198,14 +1198,14 @@ func TestGetAttestationData(t *testing.T) {
|
|||||||
func TestProduceSyncCommitteeContribution(t *testing.T) {
|
func TestProduceSyncCommitteeContribution(t *testing.T) {
|
||||||
root := bytesutil.PadTo([]byte("0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2"), 32)
|
root := bytesutil.PadTo([]byte("0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2"), 32)
|
||||||
sig := bls.NewAggregateSignature().Marshal()
|
sig := bls.NewAggregateSignature().Marshal()
|
||||||
messsage := ðpbalpha.SyncCommitteeMessage{
|
message := ðpbalpha.SyncCommitteeMessage{
|
||||||
Slot: 1,
|
Slot: 1,
|
||||||
BlockRoot: root,
|
BlockRoot: root,
|
||||||
ValidatorIndex: 0,
|
ValidatorIndex: 0,
|
||||||
Signature: sig,
|
Signature: sig,
|
||||||
}
|
}
|
||||||
syncCommitteePool := synccommittee.NewStore()
|
syncCommitteePool := synccommittee.NewStore()
|
||||||
require.NoError(t, syncCommitteePool.SaveSyncCommitteeMessage(messsage))
|
require.NoError(t, syncCommitteePool.SaveSyncCommitteeMessage(message))
|
||||||
server := Server{
|
server := Server{
|
||||||
CoreService: &core.Service{
|
CoreService: &core.Service{
|
||||||
HeadFetcher: &mockChain.ChainService{
|
HeadFetcher: &mockChain.ChainService{
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ func (b *ROBlob) ProposerIndex() primitives.ValidatorIndex {
|
|||||||
return b.SignedBlockHeader.Header.ProposerIndex
|
return b.SignedBlockHeader.Header.ProposerIndex
|
||||||
}
|
}
|
||||||
|
|
||||||
// BlockRootSlice returns the block root as a byte slice. This is often more conveninent/concise
|
// BlockRootSlice returns the block root as a byte slice. This is often more convenient/concise
|
||||||
// than setting a tmp var to BlockRoot(), just so that it can be sliced.
|
// than setting a tmp var to BlockRoot(), just so that it can be sliced.
|
||||||
func (b *ROBlob) BlockRootSlice() []byte {
|
func (b *ROBlob) BlockRootSlice() []byte {
|
||||||
return b.root[:]
|
return b.root[:]
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ func NewWaiter() *Waiter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Done is used with RequireDoneAfter and RequireDoneBefore to make assertions
|
// Done is used with RequireDoneAfter and RequireDoneBefore to make assertions
|
||||||
// that certain test code is reached before a timeout or context cancelation.
|
// that certain test code is reached before a timeout or context cancellation.
|
||||||
func (w *Waiter) Done() {
|
func (w *Waiter) Done() {
|
||||||
close(w.c)
|
close(w.c)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user