Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: correct the function name #11669

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
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/vegawallet/commands/printer/interactive_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func NewInteractivePrinter(w io.Writer) *InteractivePrinter {
}
}

// enableANSIColors enables support for ANSI color sequences in the Windows
// enableLegacyWindowsANSI enables support for ANSI color sequences in the Windows
// default console (cmd.exe and the PowerShell application). Note that this
// only works with Windows 10. Also note that Windows Terminal supports colors
// by default.
Expand Down
2 changes: 1 addition & 1 deletion core/collateral/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,7 @@ func (e *Engine) GetInfraFeeAccountIDs() []string {
return accountIDs
}

// GetPendingTransferAccount return the pending transfers account for the asset.
// GetPendingTransfersAccount return the pending transfers account for the asset.
func (e *Engine) GetPendingTransfersAccount(asset string) *types.Account {
acc, err := e.GetAccountByID(e.accountID(noMarket, systemOwner, asset, types.AccountTypePendingTransfers))
if err != nil {
Expand Down