Skip to content

Commit

Permalink
Minor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
anorth committed May 22, 2019
1 parent c34a516 commit fcb2cfe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/outbox_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()()
Expand Down
2 changes: 1 addition & 1 deletion node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion plumbing/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion plumbing/cst/chain_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit fcb2cfe

Please sign in to comment.