diff --git a/rocketpool/node/collectors/node-collector.go b/rocketpool/node/collectors/node-collector.go index 4a109e1e2..4fc0100e9 100644 --- a/rocketpool/node/collectors/node-collector.go +++ b/rocketpool/node/collectors/node-collector.go @@ -29,7 +29,7 @@ type NodeCollector struct { // The effective amount of RPL staked on the node (honoring the 150% collateral cap) effectiveStakedRpl *prometheus.Desc - // The amount of staked RPL that will be eligible for rewards (including Beacon Chain data and accounding for pending bond reductions) + // The amount of staked RPL that will be eligible for rewards (including Beacon Chain data and according for pending bond reductions) rewardableStakedRpl *prometheus.Desc // The cumulative RPL rewards earned by the node @@ -144,7 +144,7 @@ func NewNodeCollector(rp *rocketpool.RocketPool, bc *services.BeaconClientManage nil, nil, ), rewardableStakedRpl: prometheus.NewDesc(prometheus.BuildFQName(namespace, subsystem, "rewardable_staked_rpl"), - "The amount of staked RPL that will be eligible for rewards (including Beacon Chain data and accounding for pending bond reductions)", + "The amount of staked RPL that will be eligible for rewards (including Beacon Chain data and according for pending bond reductions)", nil, nil, ), cumulativeRplRewards: prometheus.NewDesc(prometheus.BuildFQName(namespace, subsystem, "cumulative_rpl_rewards"), diff --git a/shared/types/api/wallet.go b/shared/types/api/wallet.go index bc1f51f84..7eece4c33 100644 --- a/shared/types/api/wallet.go +++ b/shared/types/api/wallet.go @@ -25,7 +25,7 @@ type WalletStatusResponse struct { // When masquerading, AccountAddress represents the masqueraded address. // When using a normal wallet, AccountAddress represents the address derived from the wallet stored on disk AccountAddress common.Address `json:"accountAddress"` - // NodeAddress always represents the address drived from the wallet stored on disk + // NodeAddress always represents the address derived from the wallet stored on disk NodeAddress common.Address `json:"nodeAddress"` IsMasquerading bool `json:"isMasquerading"` }