This commit is contained in:
Łukasz Magiera 2019-10-22 13:29:41 +02:00
parent bafb7e8cfa
commit 47d92d4a11
5 changed files with 5 additions and 4 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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

View File

@ -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"

View File

@ -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"