mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
33 lines
1.2 KiB
Go
33 lines
1.2 KiB
Go
package das
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/consensus-types/blocks"
|
|
"github.com/prysmaticlabs/prysm/v5/consensus-types/primitives"
|
|
)
|
|
|
|
// MockAvailabilityStore is an implementation of AvailabilityStore that can be used by other packages in tests.
|
|
type MockAvailabilityStore struct {
|
|
VerifyAvailabilityCallback func(ctx context.Context, current primitives.Slot, b blocks.ROBlock) error
|
|
PersistBlobsCallback func(current primitives.Slot, sc ...blocks.ROBlob) error
|
|
}
|
|
|
|
var _ AvailabilityStore = &MockAvailabilityStore{}
|
|
|
|
// IsDataAvailable satisfies the corresponding method of the AvailabilityStore interface in a way that is useful for tests.
|
|
func (m *MockAvailabilityStore) IsDataAvailable(ctx context.Context, current primitives.Slot, b blocks.ROBlock) error {
|
|
if m.VerifyAvailabilityCallback != nil {
|
|
return m.VerifyAvailabilityCallback(ctx, current, b)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Persist satisfies the corresponding method of the AvailabilityStore interface in a way that is useful for tests.
|
|
func (m *MockAvailabilityStore) Persist(current primitives.Slot, sc ...blocks.ROBlob) error {
|
|
if m.PersistBlobsCallback != nil {
|
|
return m.PersistBlobsCallback(current, sc...)
|
|
}
|
|
return nil
|
|
}
|