fix test compilation.

This commit is contained in:
Raúl Kripalani 2022-11-16 22:29:53 +00:00
parent 2ff679c679
commit f809dbdd6a

View File

@ -414,11 +414,11 @@ func ParseEthLog(in map[string]interface{}) (*api.EthLog, error) {
return nil, xerrors.Errorf(k + " not a slice") return nil, xerrors.Errorf(k + " not a slice")
} }
for _, s := range sl { for _, s := range sl {
data, err := ethHash(k, s) data, err := hex.DecodeString(s.(string))
if err != nil { if err != nil {
return nil, err return nil, err
} }
el.Data = append(el.Data, data) el.Data = data
} }
case "topics": case "topics":
sl, ok := v.([]interface{}) sl, ok := v.([]interface{})
@ -426,7 +426,7 @@ func ParseEthLog(in map[string]interface{}) (*api.EthLog, error) {
return nil, xerrors.Errorf(k + " not a slice") return nil, xerrors.Errorf(k + " not a slice")
} }
for _, s := range sl { for _, s := range sl {
topic, err := ethHash(k, s) topic, err := hex.DecodeString(s.(string))
if err != nil { if err != nil {
return nil, err return nil, err
} }