feat(markets): update to 0.5.4

This commit is contained in:
hannahhoward
2020-08-05 15:35:59 -07:00
parent 6b8f27264b
commit a89c290f62
7 changed files with 53 additions and 22 deletions
+2 -2
View File
@@ -689,10 +689,10 @@ var clientFindCmd = &cli.Command{
for _, offer := range offers {
if offer.Err != "" {
fmt.Printf("ERR %s@%s: %s\n", offer.Miner, offer.MinerPeerID, offer.Err)
fmt.Printf("ERR %s@%s: %s\n", offer.Miner, offer.MinerPeer.ID, offer.Err)
continue
}
fmt.Printf("RETRIEVAL %s@%s-%s-%s\n", offer.Miner, offer.MinerPeerID, types.FIL(offer.MinPrice), types.SizeStr(types.NewInt(offer.Size)))
fmt.Printf("RETRIEVAL %s@%s-%s-%s\n", offer.Miner, offer.MinerPeer.ID, types.FIL(offer.MinPrice), types.SizeStr(types.NewInt(offer.Size)))
}
return nil