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
4 changes: 2 additions & 2 deletions rocketpool/node/collectors/node-collector.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"),
Expand Down
2 changes: 1 addition & 1 deletion shared/types/api/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}
Expand Down