Skip to content

Commit

Permalink
fix: remove print of typeinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
albttx committed Sep 28, 2023
1 parent 5a7d005 commit 7e46c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tm2/pkg/amino/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ func (cdc *Codec) getTypeInfoFromFullnameRLock(fullname string, fopts FieldOptio

info, ok := cdc.fullnameToTypeInfo[fullname]
if !ok {
err = fmt.Errorf("unrecognized concrete type full name %s of %v", fullname, cdc.fullnameToTypeInfo)
err = fmt.Errorf("amino: unrecognized concrete type full name %s", fullname)

Check warning on line 535 in tm2/pkg/amino/codec.go

View check run for this annotation

Codecov / codecov/patch

tm2/pkg/amino/codec.go#L535

Added line #L535 was not covered by tests
cdc.mtx.RUnlock()
return
}
Expand Down

0 comments on commit 7e46c4c

Please sign in to comment.