Added handling of parseStatuOptionKeys() error
This commit is contained in:
parent
1858ad3ae2
commit
a44fb3c372
|
@ -146,7 +146,10 @@ func (o *statusOptions) DecodeRLP(s *rlp.Stream) error {
|
||||||
return fmt.Errorf("expected an outer list: %v", err)
|
return fmt.Errorf("expected an outer list: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
o.parseStatusOptionKeys()
|
err = o.parseStatusOptionKeys()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
v := reflect.ValueOf(o)
|
v := reflect.ValueOf(o)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue