Merge pull request #1508 from filecoin-project/feat/reward-list-fil

rewards cli: Print amount in list as Fil
This commit is contained in:
Łukasz Magiera 2020-04-03 15:39:06 +02:00 committed by GitHub
commit 847bdb203a

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