prysm-pulse/beacon-chain/rpc/testutil/mock_state_fetcher.go
Radosław Kapka 0c997ede0f
Query duties - epoch changes (#11806)
* Allow fetching next epoch attester duties

* better formatting

* fix tests

* use param
2022-12-21 16:28:16 +00:00

30 lines
749 B
Go

package testutil
import (
"context"
"github.com/prysmaticlabs/prysm/v3/beacon-chain/state"
types "github.com/prysmaticlabs/prysm/v3/consensus-types/primitives"
)
// MockFetcher is a fake implementation of statefetcher.Fetcher.
type MockFetcher struct {
BeaconState state.BeaconState
BeaconStateRoot []byte
StatesBySlot map[types.Slot]state.BeaconState
}
// State --
func (m *MockFetcher) State(context.Context, []byte) (state.BeaconState, error) {
return m.BeaconState, nil
}
// StateRoot --
func (m *MockFetcher) StateRoot(context.Context, []byte) ([]byte, error) {
return m.BeaconStateRoot, nil
}
func (m *MockFetcher) StateBySlot(_ context.Context, s types.Slot) (state.BeaconState, error) {
return m.StatesBySlot[s], nil
}