From 3fe9a9f5714e1410351c8bd753a1b866849de248 Mon Sep 17 00:00:00 2001 From: Julian Compagni Portis Date: Fri, 20 Dec 2024 19:42:28 -0800 Subject: [PATCH] fix LO resp keys --- packages/neutron-sdk/src/proto_types/neutron.dex.rs | 2 +- packages/neutron-sdk/src/stargate/dex/types.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/neutron-sdk/src/proto_types/neutron.dex.rs b/packages/neutron-sdk/src/proto_types/neutron.dex.rs index f3e3c5a7..aba1bd11 100644 --- a/packages/neutron-sdk/src/proto_types/neutron.dex.rs +++ b/packages/neutron-sdk/src/proto_types/neutron.dex.rs @@ -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, diff --git a/packages/neutron-sdk/src/stargate/dex/types.rs b/packages/neutron-sdk/src/stargate/dex/types.rs index 946377d1..ed31da04 100644 --- a/packages/neutron-sdk/src/stargate/dex/types.rs +++ b/packages/neutron-sdk/src/stargate/dex/types.rs @@ -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, pub taker_coin_out: Option, pub taker_coin_in: Option,