Make chainconfig wrapper more robust against differences between types

This commit is contained in:
Austin Roberts 2021-10-18 15:01:04 -05:00
parent 149b5220ad
commit 625d2c0e98

View File

@ -606,11 +606,15 @@ func (b *Backend) ChainConfig() *params.ChainConfig {
field := ntype.Field(i)
v := nval.Elem().FieldByName(field.Name)
lv := lval.Elem().FieldByName(field.Name)
log.Info("Checking value for", "field", field.Name)
if lv.Kind() != reflect.Invalid {
// If core.ChainConfig doesn't have this field, skip it.
if v.Type() == lv.Type() && lv.CanSet() {
lv.Set(v)
} else {
convertAndSet(lv, v)
}
}
}
return b.chainConfig
}