Merge pull request #6664 from filecoin-project/chore/fix_check-client-datacap

Fix tiny error in check-client-datacap
This commit is contained in:
Łukasz Magiera 2021-07-02 18:24:18 +02:00 committed by GitHub
commit bcb839a7d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -210,7 +210,7 @@ var filplusCheckClientCmd = &cli.Command{
return err
}
if dcap == nil {
return xerrors.Errorf("client %s is not a verified client", err)
return xerrors.Errorf("client %s is not a verified client", caddr)
}
fmt.Println(*dcap)