diff --git a/api/api.go b/api/api.go index 696e30d61..ea444a2c9 100644 --- a/api/api.go +++ b/api/api.go @@ -3,7 +3,6 @@ package api import ( "context" "fmt" - "github.com/filecoin-project/lotus/chain/actors" sectorbuilder "github.com/filecoin-project/go-sectorbuilder" "github.com/ipfs/go-cid" @@ -14,6 +13,7 @@ import ( sectorbuilder "github.com/filecoin-project/go-sectorbuilder" "github.com/filecoin-project/lotus/build" + "github.com/filecoin-project/lotus/chain/actors" "github.com/filecoin-project/lotus/chain/address" "github.com/filecoin-project/lotus/chain/store" "github.com/filecoin-project/lotus/chain/types" diff --git a/api/struct.go b/api/struct.go index 9e1d5b623..1f09733f9 100644 --- a/api/struct.go +++ b/api/struct.go @@ -2,13 +2,13 @@ package api import ( "context" - "github.com/filecoin-project/lotus/chain/actors" sectorbuilder "github.com/filecoin-project/go-sectorbuilder" "github.com/ipfs/go-cid" "github.com/libp2p/go-libp2p-core/network" "github.com/libp2p/go-libp2p-core/peer" + "github.com/filecoin-project/lotus/chain/actors" "github.com/filecoin-project/lotus/chain/address" "github.com/filecoin-project/lotus/chain/store" "github.com/filecoin-project/lotus/chain/types" diff --git a/chain/actors/actor_miner.go b/chain/actors/actor_miner.go index 7f87a2aea..b57d33f62 100644 --- a/chain/actors/actor_miner.go +++ b/chain/actors/actor_miner.go @@ -210,7 +210,7 @@ type CommitSectorParams struct { } type OnChainSealVerifyInfo struct { - SealedCID cid.Cid // CommR .. TODO: spec says cid, but it feela weird + SealedCID cid.Cid // CommR .. TODO: spec says cid, but it feels weird Epoch uint64 Proof []byte DealIDs []uint64 diff --git a/chain/actors/actor_storagemarket.go b/chain/actors/actor_storagemarket.go index 36e5edc9e..0007fb0b3 100644 --- a/chain/actors/actor_storagemarket.go +++ b/chain/actors/actor_storagemarket.go @@ -3,6 +3,7 @@ package actors import ( "bytes" "context" + "github.com/filecoin-project/go-amt-ipld" "github.com/ipfs/go-cid" "github.com/ipfs/go-hamt-ipld" diff --git a/chain/deals/client.go b/chain/deals/client.go index 3df2e5018..94cb1b8ba 100644 --- a/chain/deals/client.go +++ b/chain/deals/client.go @@ -2,7 +2,6 @@ package deals import ( "context" - "github.com/filecoin-project/lotus/chain/store" "math" "github.com/ipfs/go-cid" @@ -19,6 +18,7 @@ import ( "github.com/filecoin-project/lotus/chain/actors" "github.com/filecoin-project/lotus/chain/address" "github.com/filecoin-project/lotus/chain/stmgr" + "github.com/filecoin-project/lotus/chain/store" "github.com/filecoin-project/lotus/chain/types" "github.com/filecoin-project/lotus/chain/wallet" "github.com/filecoin-project/lotus/lib/cborrpc"