fixed output of 'storage list' for long block names

This commit is contained in:
Jarek Kowalski
2018-02-11 08:12:20 -08:00
parent 4c5377898f
commit 01ffec69fc

View File

@@ -23,7 +23,7 @@ func runListStorageBlocks(context *kingpin.ParseContext) error {
return b.Error
}
fmt.Printf("%-50v %10v %v\n", b.BlockID, b.Length, b.TimeStamp.Local().Format(timeFormat))
fmt.Printf("%-70v %10v %v\n", b.BlockID, b.Length, b.TimeStamp.Local().Format(timeFormat))
}
return nil