Skip to content

Commit

Permalink
skip field type check
Browse files Browse the repository at this point in the history
  • Loading branch information
colindickson committed Aug 4, 2023
1 parent 803e133 commit f5c2184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csvprocessor/entity.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func newEntity(in *EntityChangeAtBlockNum, desc *schema.EntityDesc) (*Entity, er

v, ok := f.NewValue.Typed[expectedTypedField]
if !ok {
return nil, fmt.Errorf("invalid field %q: wrong type %q, got %+v", normalizedName, fieldDesc.Type, f.NewValue.Typed)
//return nil, fmt.Errorf("invalid field %q: wrong type %q, got %+v", normalizedName, fieldDesc.Type, f.NewValue.Typed)
}
e.Fields[normalizedName] = v
}
Expand Down

0 comments on commit f5c2184

Please sign in to comment.