Fix lotus-shed actor cmd

Check the length of multisig address in lotus-shed actor cmd as well.
This commit is contained in:
Phi 2022-09-05 09:58:34 +02:00
parent 3e74819519
commit 9c48922a75

View File

@ -367,7 +367,9 @@ var actorControlList = &cli.Command{
kstr := k.String()
if !cctx.Bool("verbose") {
kstr = kstr[:6] + "..."
if len(kstr) > 9 {
kstr = kstr[:6] + "..."
}
}
bstr := types.FIL(b).String()