Skip to content

Commit

Permalink
more optional fields
Browse files Browse the repository at this point in the history
  • Loading branch information
jcompagni10 committed Aug 31, 2024
1 parent 13efe0a commit fc90769
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/neutron-sdk/src/bindings/dex/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ pub struct MsgWithdrawal {
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub struct MsgWithdrawalResponse {
pub reserve0_withdrawn: Uint128,
pub reserve1_withdrawn: Uint128,
pub reserve0_withdrawn: Option<Uint128>,
pub reserve1_withdrawn: Option<Uint128>,
pub shares_burned: Vec<Coin>,
}

Expand Down

0 comments on commit fc90769

Please sign in to comment.