diff --git a/tm2/pkg/bft/rpc/lib/types/types.go b/tm2/pkg/bft/rpc/lib/types/types.go index e1d165e6e54..f4910eeb865 100644 --- a/tm2/pkg/bft/rpc/lib/types/types.go +++ b/tm2/pkg/bft/rpc/lib/types/types.go @@ -194,7 +194,7 @@ func NewRPCSuccessResponse(id JSONRPCID, res any) RPCResponse { if res != nil { var js []byte - js, err := amino.MarshalJSON(res) + js, err := json.Marshal(res) if err != nil { return RPCInternalError(id, errors.Wrap(err, "Error marshalling response")) }