fix test
This commit is contained in:
parent
96245c3cfa
commit
9e85492b85
@ -24,8 +24,8 @@ func TestFirstDealEnablesMining(t *testing.T) {
|
|||||||
|
|
||||||
ens := kit.NewEnsemble(t, kit.MockProofs())
|
ens := kit.NewEnsemble(t, kit.MockProofs())
|
||||||
ens.FullNode(&client)
|
ens.FullNode(&client)
|
||||||
ens.Miner(&genMiner, &client)
|
ens.Miner(&genMiner, &client, kit.WithAllSubsystems())
|
||||||
ens.Miner(&provider, &client, kit.PresealSectors(0))
|
ens.Miner(&provider, &client, kit.WithAllSubsystems(), kit.PresealSectors(0))
|
||||||
ens.Start().InterconnectAll().BeginMining(50 * time.Millisecond)
|
ens.Start().InterconnectAll().BeginMining(50 * time.Millisecond)
|
||||||
|
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
|
@ -15,6 +15,7 @@ import (
|
|||||||
"github.com/filecoin-project/lotus/build"
|
"github.com/filecoin-project/lotus/build"
|
||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
"github.com/ipfs/go-cid"
|
"github.com/ipfs/go-cid"
|
||||||
|
"github.com/libp2p/go-libp2p-core/host"
|
||||||
"github.com/libp2p/go-libp2p-core/peer"
|
"github.com/libp2p/go-libp2p-core/peer"
|
||||||
"golang.org/x/xerrors"
|
"golang.org/x/xerrors"
|
||||||
|
|
||||||
@ -58,7 +59,7 @@ type StorageMinerAPI struct {
|
|||||||
DataTransfer dtypes.ProviderDataTransfer `optional:"true"`
|
DataTransfer dtypes.ProviderDataTransfer `optional:"true"`
|
||||||
DealPublisher *storageadapter.DealPublisher `optional:"true"`
|
DealPublisher *storageadapter.DealPublisher `optional:"true"`
|
||||||
SectorBlocks *sectorblocks.SectorBlocks `optional:"true"`
|
SectorBlocks *sectorblocks.SectorBlocks `optional:"true"`
|
||||||
Host dtypes.Libp2pHost `optional:"true"`
|
Host host.Host `optional:"true"`
|
||||||
|
|
||||||
// Miner / storage
|
// Miner / storage
|
||||||
Miner *storage.Miner `optional:"true"`
|
Miner *storage.Miner `optional:"true"`
|
||||||
|
@ -6,7 +6,6 @@ import (
|
|||||||
"github.com/ipfs/go-graphsync"
|
"github.com/ipfs/go-graphsync"
|
||||||
exchange "github.com/ipfs/go-ipfs-exchange-interface"
|
exchange "github.com/ipfs/go-ipfs-exchange-interface"
|
||||||
format "github.com/ipfs/go-ipld-format"
|
format "github.com/ipfs/go-ipld-format"
|
||||||
"github.com/libp2p/go-libp2p-core/host"
|
|
||||||
|
|
||||||
"github.com/filecoin-project/go-fil-markets/storagemarket/impl/requestvalidation"
|
"github.com/filecoin-project/go-fil-markets/storagemarket/impl/requestvalidation"
|
||||||
"github.com/filecoin-project/go-multistore"
|
"github.com/filecoin-project/go-multistore"
|
||||||
@ -84,7 +83,7 @@ type ClientDataTransfer datatransfer.Manager
|
|||||||
|
|
||||||
type ProviderDealStore *statestore.StateStore
|
type ProviderDealStore *statestore.StateStore
|
||||||
type ProviderPieceStore piecestore.PieceStore
|
type ProviderPieceStore piecestore.PieceStore
|
||||||
type Libp2pHost host.Host
|
|
||||||
type ProviderRequestValidator *requestvalidation.UnifiedRequestValidator
|
type ProviderRequestValidator *requestvalidation.UnifiedRequestValidator
|
||||||
|
|
||||||
// ProviderDataTransfer is a data transfer manager for the provider
|
// ProviderDataTransfer is a data transfer manager for the provider
|
||||||
|
Loading…
Reference in New Issue
Block a user