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/bootstrap-limiter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Description

This utility is aimed to provide an easy way to setup the system so that a non-privileged user can set resource limits for Bless Functions.
This tool is designed to be run a single time, before runing the Bless Worker Node.
This tool is designed to be run a single time, before running the Bless Worker Node.
If the user has no intention of using cgroups to set resource limits, there is no need in running this tool.

## Workaround
Expand Down
2 changes: 1 addition & 1 deletion log/hclog/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const (
nameField = "module"
)

// Logger is a zerolog logger that fullfils the `go-hclog` Logger interface.
// Logger is a zerolog logger that fulfils the `go-hclog` Logger interface.
type Logger struct {
name string
logger zerolog.Logger
Expand Down
2 changes: 1 addition & 1 deletion node/head/execute.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ func peerRequestKey(requestID string, peer peer.ID) string {
return requestID + "/" + peer.String()
}

// helper function just for the sake of readibility.
// helper function just for the sake of readability.
func consensusRequired(c cons.Type) bool {
return c != 0
}