Skip to content
Merged
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 libwallet/assets/dcr/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

var log = slog.Disabled

// UseLoggers sets the subsystem logs to use the provided loggers.
// UseLogger sets the subsystem logs to use the provided loggers.
func UseLogger(logger slog.Logger) {
log = logger
loader.UseLogger(logger)
Expand Down
2 changes: 1 addition & 1 deletion libwallet/assets/ltc/dex-wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 +1045,7 @@ func confirms(txHeight, curHeight int32) int32 {
}
}

// accountInfo returns the account name of the wallet.
// accountName returns the account name of the wallet.
func (dw *DEXWallet) accountName() string {
accountName, err := dw.w.AccountName(GetScope(), uint32(dw.acctNum))
if err == nil {
Expand Down
2 changes: 1 addition & 1 deletion libwallet/assets/wallet/wallet_shared.go
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ func (wallet *Wallet) EnableSyncShuttingDown() {
wallet.isSyncShuttingDown.Store(true)
}

// EnableSyncShuttingDown marks the end of the sync shutdown process.
// EndSyncShuttingDown marks the end of the sync shutdown process.
func (wallet *Wallet) EndSyncShuttingDown() {
wallet.isSyncShuttingDown.Store(false)
}
Expand Down