Skip to content

Commit

Permalink
proto(view): deprecate withdraw DA reserves in TPR
Browse files Browse the repository at this point in the history
  • Loading branch information
erwanor committed Apr 25, 2024
1 parent 6d56c6c commit bb8aa55
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions proto/penumbra/penumbra/view/v1/view.proto
Original file line number Diff line number Diff line change
Expand Up @@ -342,10 +342,14 @@ message TransactionPlannerRequest {
core.component.auction.v1alpha1.AuctionId auction_id = 1;
// The sequence number of the withdrawal.
uint64 seq = 2;
// The auction's reserves of input asset
core.asset.v1.Value input_reserves = 3;
// The auction's reserves of input asset.
// This field is deprecated - the planner can query the user's view agent
// to populate this field.
core.num.v1.Amount input_reserves = 3 [deprecated = true];
// The auction's reserves of output asset.
core.asset.v1.Value output_reserves = 4;
// This field is deprecated - the planner can query the user's view agent
// to populate this field.
core.num.v1.Amount output_reserves = 4 [deprecated = true];
}
}

Expand Down

0 comments on commit bb8aa55

Please sign in to comment.