diff --git a/core/outbox_test.go b/core/outbox_test.go index 61f40e1e47..7c0819a3ce 100644 --- a/core/outbox_test.go +++ b/core/outbox_test.go @@ -115,7 +115,7 @@ func TestOutbox(t *testing.T) { } }) - t.Run("nonce fails with non-account actor", func(t *testing.T) { + t.Run("fails with non-account actor", func(t *testing.T) { w, _ := types.NewMockSignersAndKeyInfo(1) sender := w.Addresses[0] toAddr := address.NewForTestGetter()() diff --git a/node/node.go b/node/node.go index 42204535bc..11878a2e02 100644 --- a/node/node.go +++ b/node/node.go @@ -50,8 +50,8 @@ import ( "github.com/filecoin-project/go-filecoin/net/pubsub" "github.com/filecoin-project/go-filecoin/paths" "github.com/filecoin-project/go-filecoin/plumbing" - "github.com/filecoin-project/go-filecoin/plumbing/cst" "github.com/filecoin-project/go-filecoin/plumbing/cfg" + "github.com/filecoin-project/go-filecoin/plumbing/cst" "github.com/filecoin-project/go-filecoin/plumbing/dag" "github.com/filecoin-project/go-filecoin/plumbing/msg" "github.com/filecoin-project/go-filecoin/plumbing/strgdls" diff --git a/plumbing/api.go b/plumbing/api.go index 25f3489a31..f7fb8855f2 100644 --- a/plumbing/api.go +++ b/plumbing/api.go @@ -23,8 +23,8 @@ import ( "github.com/filecoin-project/go-filecoin/exec" "github.com/filecoin-project/go-filecoin/net" "github.com/filecoin-project/go-filecoin/net/pubsub" - "github.com/filecoin-project/go-filecoin/plumbing/cst" "github.com/filecoin-project/go-filecoin/plumbing/cfg" + "github.com/filecoin-project/go-filecoin/plumbing/cst" "github.com/filecoin-project/go-filecoin/plumbing/dag" "github.com/filecoin-project/go-filecoin/plumbing/msg" "github.com/filecoin-project/go-filecoin/plumbing/strgdls" diff --git a/plumbing/cst/chain_state.go b/plumbing/cst/chain_state.go index 9745bb9fab..70dcadef77 100644 --- a/plumbing/cst/chain_state.go +++ b/plumbing/cst/chain_state.go @@ -83,7 +83,7 @@ func (chn *ChainStateProvider) SampleRandomness(ctx context.Context, sampleHeigh return sampling.SampleChainRandomness(sampleHeight, tipSetBuffer) } -// GetActorAt returns an actor from the latest state on the chain +// GetActor returns an actor from the latest state on the chain func (chn *ChainStateProvider) GetActor(ctx context.Context, addr address.Address) (*actor.Actor, error) { return chn.GetActorAt(ctx, chn.reader.GetHead(), addr) }