prysm-pulse/beacon-chain/rpc/testutil/mock_state_fetcher.go
Preston Van Loon c0076cc7a2
State: move state interfaces into state package (#9268)
* Move interfaces from github.com/prysmaticlabs/prysm/beacon-chain/state/interface to github.com/prysmaticlabs/prysm/beacon-chain/state

* remove/rename state2
2021-07-23 16:11:21 +00:00

24 lines
496 B
Go

package testutil
import (
"context"
"github.com/prysmaticlabs/prysm/beacon-chain/state"
)
// MockFetcher is a fake implementation of statefetcher.Fetcher.
type MockFetcher struct {
BeaconState state.BeaconState
BeaconStateRoot []byte
}
// 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
}