Skip to content

Commit

Permalink
fix LO resp keys
Browse files Browse the repository at this point in the history
  • Loading branch information
jcompagni10 committed Dec 21, 2024
1 parent 9ecafd1 commit 3fe9a9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/neutron-sdk/src/proto_types/neutron.dex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ pub struct MsgPlaceLimitOrder {
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgPlaceLimitOrderResponse {
#[prost(string, tag = "1")]
pub tranche_key: ::prost::alloc::string::String,
pub trancheKey: ::prost::alloc::string::String,
/// Total amount of coin used for the limit order
#[prost(message, optional, tag = "2")]
pub coin_in: ::core::option::Option<cosmos_sdk_proto::cosmos::base::v1beta1::Coin>,
Expand Down
2 changes: 1 addition & 1 deletion packages/neutron-sdk/src/stargate/dex/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ pub struct EstimatePlaceLimitOrderResponse {

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
pub struct PlaceLimitOrderResponse {
pub tranche_key: String,
pub trancheKey: String,
pub coin_in: Option<Coin>,
pub taker_coin_out: Option<Coin>,
pub taker_coin_in: Option<Coin>,
Expand Down

0 comments on commit 3fe9a9f

Please sign in to comment.