fix(lint): fix lint error

fix lint error and update to tagged package
This commit is contained in:
hannahhoward
2020-06-15 15:53:39 -07:00
parent 9262661135
commit a422647819
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -202,7 +202,7 @@ func (sm *StorageMinerAPI) MarketListIncompleteDeals(ctx context.Context) ([]sto
}
func (sm *StorageMinerAPI) MarketSetPrice(ctx context.Context, p types.BigInt) error {
return sm.StorageProvider.SetAsk(abi.TokenAmount(p), 60*60*24*100) // lasts for 100 days?
return sm.StorageProvider.SetAsk(p, 60*60*24*100) // lasts for 100 days?
}
func (sm *StorageMinerAPI) DealsList(ctx context.Context) ([]storagemarket.StorageDeal, error) {