"validator summary" requires validators

This commit is contained in:
Jim McDonald
2023-07-04 21:33:37 +02:00
parent 7837165d46
commit ac7e0985fb
2 changed files with 5 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
dev:
- fix incorrect error when "deposit veirfy" is not given a withdrawal address
- fix incorrect error when "deposit verify" is not given a withdrawal address
- allow truncated mnemonics (first four characters of each word)
- add deneb information to "block info"
- add epoch parameter to "validator yield"

View File

@@ -27,6 +27,10 @@ import (
)
func (c *command) process(ctx context.Context) error {
if len(c.validators) == 0 {
return errors.New("no validators supplied")
}
// Obtain information we need to process.
err := c.setup(ctx)
if err != nil {