Skip to content

Commit

Permalink
Merge pull request #4104 from filecoin-project/asr/wallet-fix
Browse files Browse the repository at this point in the history
Fix wallet list
  • Loading branch information
magik6k authored Sep 30, 2020
2 parents 6025bce + 9fe32b7 commit e39c5dc
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cli/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,8 @@ var walletList = &cli.Command{
return err
}

def, err := api.WalletDefaultAddress(ctx)
if err != nil {
return err
}
// Assume an error means no default key is set
def, _ := api.WalletDefaultAddress(ctx)

tw := tablewriter.New(
tablewriter.Col("Address"),
Expand Down

0 comments on commit e39c5dc

Please sign in to comment.