Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions modules/apps/transfer/keeper/grpc_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,15 +159,3 @@ func (k Keeper) TotalEscrowForDenom(c context.Context, req *types.QueryTotalEscr
Amount: amount,
}, nil
}

// DenomTrace implements the Query/DenomTrace gRPC method
// Deprecated: Please use Denom instead.
func (Keeper) DenomTrace(c context.Context, req *types.QueryDenomTraceRequest) (*types.QueryDenomTraceResponse, error) {
return nil, status.Error(codes.Unimplemented, "unsupported rpc")
}

// DenomTraces implements the Query/DenomTraces gRPC method
// Deprecated: Please use Denoms instead.
func (Keeper) DenomTraces(c context.Context, req *types.QueryDenomTracesRequest) (*types.QueryDenomTracesResponse, error) {
return nil, status.Error(codes.Unimplemented, "unsupported rpc")
}
8 changes: 8 additions & 0 deletions modules/apps/transfer/types/legacy_denomtrace.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package types
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't mind moving these elsewhere if people want. just chose a random file for time being.


// TODO: https://github.com/cosmos/ibc-go/issues/6421#issuecomment-2137516426
// Kept around due to dependency. Empty and useless and ideally dropped before v9.
type (
QueryDenomTracesResponse struct{}
QueryDenomTraceResponse struct{}
)
Loading