Merge pull request #1508 from filecoin-project/feat/reward-list-fil
rewards cli: Print amount in list as Fil
This commit is contained in:
commit
847bdb203a
@ -49,7 +49,7 @@ var rewardsListCmd = &cli.Command{
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _, r := range rewards {
|
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
|
return nil
|
||||||
|
Loading…
Reference in New Issue
Block a user