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 shared/types/config/parameter.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ func (param *Parameter) UpdateDescription(network Network) {
}
}

// Add the parameters to the collection of environment variabes
// Add the parameters to the collection of environment variables
func AddParametersToEnvVars(params []*Parameter, envVars map[string]string) {
for _, param := range params {
for _, envVar := range param.EnvironmentVariables {
Expand Down
2 changes: 1 addition & 1 deletion shared/utils/string-utils/str-convs.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func StringifyArray(arr []*big.Int) string {
return strings.Join(strArr, ",")
}

// write a method given a comma seperated value of string numbers, get the big Ints back
// write a method given a comma separated value of string numbers, get the big Ints back
func DestringifyArray(arr string) ([]*big.Int, error) {
var intArr []*big.Int
for _, v := range strings.Split(arr, ",") {
Expand Down
2 changes: 1 addition & 1 deletion stader-lib/stader/stader.go
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ func NewPenaltyTracker(client ExecutionClient, penaltyAddress common.Address) (*

}

// implement simliar bindings as above for stake pool manager
// implement similar bindings as above for stake pool manager

type StakePoolManagerContractManager struct {
Client ExecutionClient
Expand Down
2 changes: 1 addition & 1 deletion stader/api/node/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func getStatus(c *cli.Context) (*api.NodeStatusResponse, error) {
response.OperatorRewardAddress = operatorRegistry.OperatorRewardAddress
response.OptedInForSocializingPool = operatorRegistry.OptedForSocializingPool

// non socializing pool fee recepient
// non socializing pool fee recipient
operatorElRewardAddress, err := node.GetNodeElRewardAddress(pnr, 1, operatorId, nil)
if err != nil {
return nil, err
Expand Down