client deal command outputs Base32-encoded CID

This commit is contained in:
laser 2020-06-05 13:13:33 -07:00
parent b3eef76cdd
commit 55a9c9ae0a

View File

@ -281,7 +281,13 @@ var clientDealCmd = &cli.Command{
return err
}
fmt.Println(proposal)
encoded, err := proposal.StringOfBase(multibase.Base32)
if err != nil {
return err
}
fmt.Println(encoded)
return nil
},
}