lotus/node/impl/market/market.go

23 lines
470 B
Go
Raw Normal View History

2019-11-08 17:15:38 +00:00
package market
import (
"context"
"go.uber.org/fx"
"github.com/filecoin-project/go-address"
2019-11-08 17:15:38 +00:00
"github.com/filecoin-project/lotus/chain/market"
"github.com/filecoin-project/lotus/chain/types"
"github.com/ipfs/go-cid"
2019-11-08 17:15:38 +00:00
)
type MarketAPI struct {
fx.In
FMgr *market.FundMgr
}
func (a *MarketAPI) MarketEnsureAvailable(ctx context.Context, addr, wallet address.Address, amt types.BigInt) (cid.Cid, error) {
return a.FMgr.EnsureAvailable(ctx, addr, wallet, amt)
2019-11-08 17:15:38 +00:00
}