fix parsing of peerID in input to set-peer-id

This commit is contained in:
whyrusleeping 2020-08-25 17:10:06 -07:00
parent 6c2fa9086e
commit 9bb862d025

View File

@ -137,7 +137,7 @@ var actorSetPeeridCmd = &cli.Command{
ctx := lcli.ReqContext(cctx)
pid, err := peer.IDFromString(cctx.Args().Get(0))
pid, err := peer.Decode(cctx.Args().Get(0))
if err != nil {
return fmt.Errorf("failed to parse input as a peerId: %w", err)
}