Check length of msig address
Check the length of multisig address, and print based on that.
This commit is contained in:
parent
7c00c1e5d5
commit
3e74819519
@ -513,7 +513,9 @@ var actorControlList = &cli.Command{
|
|||||||
}
|
}
|
||||||
kstr := k.String()
|
kstr := k.String()
|
||||||
if !cctx.Bool("verbose") {
|
if !cctx.Bool("verbose") {
|
||||||
kstr = kstr[:6] + "..."
|
if len(kstr) > 9 {
|
||||||
|
kstr = kstr[:6] + "..."
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bstr := types.FIL(b).String()
|
bstr := types.FIL(b).String()
|
||||||
|
Loading…
Reference in New Issue
Block a user