fix blocks topic

This commit is contained in:
whyrusleeping 2020-03-03 21:03:35 -08:00
parent dcf5fb36f3
commit 37d5baf0b2
3 changed files with 10 additions and 3 deletions

View File

@ -14,6 +14,7 @@ import (
logging "github.com/ipfs/go-log/v2"
"github.com/filecoin-project/go-fil-markets/storagemarket"
"github.com/filecoin-project/lotus/api"
"github.com/filecoin-project/lotus/build"
"github.com/filecoin-project/lotus/chain/types"
"github.com/filecoin-project/lotus/node/impl"
@ -74,7 +75,13 @@ func TestDealFlow(t *testing.T, b APIBuilder, blocktime time.Duration) {
if err != nil {
t.Fatal(err)
}
deal, err := client.ClientStartDeal(ctx, &storagemarket.DataRef{Root: fcid}, addr, maddr, types.NewInt(1000000), 100)
deal, err := client.ClientStartDeal(ctx, &api.StartDealParams{
Data: &storagemarket.DataRef{Root: fcid},
Wallet: addr,
Miner: maddr,
EpochPrice: types.NewInt(1000000),
BlocksDuration: 100,
})
if err != nil {
t.Fatalf("%+v", err)
}

View File

@ -77,7 +77,7 @@ func (a *SyncAPI) SyncSubmitBlock(ctx context.Context, blk *types.BlockMsg) erro
}
// TODO: anything else to do here?
return a.PubSub.Publish(build.MessagesTopic, b)
return a.PubSub.Publish(build.BlocksTopic, b)
}
func (a *SyncAPI) SyncIncomingBlocks(ctx context.Context) (<-chan *types.BlockHeader, error) {

View File

@ -71,7 +71,7 @@ func HandleIncomingBlocks(mctx helpers.MetricsCtx, lc fx.Lifecycle, ps *pubsub.P
func HandleIncomingMessages(mctx helpers.MetricsCtx, lc fx.Lifecycle, ps *pubsub.PubSub, mpool *messagepool.MessagePool) {
ctx := helpers.LifecycleCtx(mctx, lc)
msgsub, err := ps.Subscribe(build.MessagesTopic)
msgsub, err := ps.Subscribe(build.BlocksTopic)
if err != nil {
panic(err)
}