prysm-pulse/beacon-chain/rpc/testutil/mock_state_fetcher.go
Victor Farazdagi 386b69f473
Fix comments (#8802)
* fix incorrect exported name in comments

* add comments to exported methods
2021-04-23 12:06:05 +00:00

18 lines
359 B
Go

package testutil
import (
"context"
iface "github.com/prysmaticlabs/prysm/beacon-chain/state/interface"
)
// MockFetcher is a fake implementation of statefetcher.Fetcher.
type MockFetcher struct {
BeaconState iface.BeaconState
}
// State --
func (m *MockFetcher) State(context.Context, []byte) (iface.BeaconState, error) {
return m.BeaconState, nil
}