Skip to content
Merged
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 rocketpool-cli/odao/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func RegisterCommands(app *cli.Command, name string, aliases []string) {
Name: "penalise-megapool",
Aliases: []string{"pm"},
Usage: "(Saturn) Penalise a megapool",
UsageText: "rocketpool odao penalise-megapool megapool-adress block",
UsageText: "rocketpool odao penalise-megapool megapool-address block",
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "yes",
Expand Down
2 changes: 1 addition & 1 deletion shared/services/beacon/client/std-http-client.go
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ func (c *StandardHttpClient) GetValidatorBalances(indices []string, opts *beacon
// In order to avoid thrashing the bn, when opts.Slot is provided,
// we will preflight the balance query with a sync query, and ensure that the
// bn has not entered optimistic sync due to being unable to provide forkchoice updates,
// and that the current head is a recent slot.
// and that the current head is at a recent slot.
func (c *StandardHttpClient) GetValidatorBalancesSafe(indices []string, opts *beacon.ValidatorStatusOptions) (map[string]*big.Int, error) {
// Filter out empty indices
indices = slices.DeleteFunc(indices, func(index string) bool {
Expand Down
2 changes: 1 addition & 1 deletion shared/utils/api/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func IsTransactionDue(rp *rocketpool.RocketPool, startTime time.Time) (bool, tim

}

// Expects a 129 byte 0x-prefixed EIP-712 signature and returns v/r/s as v uint8 and r, s [32]byte
// Expects a 129 byte 0x-prefixed EIP-712 signature and returns v/r/s as v uint8 and r, s [32]byte

func ParseEIP712(signature string) (*EIP712Components, error) {
if len(signature) != 132 || signature[:2] != "0x" {
Expand Down
Loading