rewards cli: Print amount in list as Fil

This commit is contained in:
Łukasz Magiera 2020-04-03 06:31:59 +02:00
parent 5b6bbfe903
commit dd6adcd240

View File

@ -49,7 +49,7 @@ var rewardsListCmd = &cli.Command{
}
for _, r := range rewards {
fmt.Printf("%d\t%d\t%s\n", r.StartEpoch, r.EndEpoch, r.Value)
fmt.Printf("%d\t%d\t%s\n", r.StartEpoch, r.EndEpoch, types.FIL(r.Value))
}
return nil