Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/wallets/credit.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func (c *CreditWalletController) Run(cmd *cobra.Command, args []string) (fctl.Re
if err != nil {
return nil, err
}
if !fctl.CheckStackApprobation(cmd, "You are about to credit a wallets") {
if !fctl.CheckStackApprobation(cmd, "You are about to credit a wallet") {
return nil, fctl.ErrMissingApproval
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/wallets/debit.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (c *DebitWalletController) Run(cmd *cobra.Command, args []string) (fctl.Ren
return nil, err
}

if !fctl.CheckStackApprobation(cmd, "You are about to debit a wallets") {
if !fctl.CheckStackApprobation(cmd, "You are about to debit a wallet") {
return nil, fctl.ErrMissingApproval
}

Expand Down
Loading