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

node: fix typo in comment #27236

Merged
merged 1 commit into from
May 10, 2023
Merged
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
6 changes: 3 additions & 3 deletions node/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ type Config struct {
// is created by New and destroyed when the node is stopped.
KeyStoreDir string `toml:",omitempty"`

// ExternalSigner specifies an external URI for a clef-type signer
// ExternalSigner specifies an external URI for a clef-type signer.
ExternalSigner string `toml:",omitempty"`

// UseLightweightKDF lowers the memory and CPU requirements of the key store
Expand All @@ -92,7 +92,7 @@ type Config struct {
// USB enables hardware wallet monitoring and connectivity.
USB bool `toml:",omitempty"`

// SmartCardDaemonPath is the path to the smartcard daemon's socket
// SmartCardDaemonPath is the path to the smartcard daemon's socket.
SmartCardDaemonPath string `toml:",omitempty"`

// IPCPath is the requested location to place the IPC endpoint. If the path is
Expand Down Expand Up @@ -391,7 +391,7 @@ func (c *Config) NodeKey() *ecdsa.PrivateKey {
return key
}

// CheckLegacyFiles inspects the datadir for signs of legacy static-nodes
// checkLegacyFiles inspects the datadir for signs of legacy static-nodes
// and trusted-nodes files. If they exist it raises an error.
func (c *Config) checkLegacyFiles() {
c.checkLegacyFile(c.ResolvePath(datadirStaticNodes))
Expand Down