Skip to content

Commit

Permalink
respect gogoproto nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
pr0n00gler committed Oct 31, 2024
1 parent f81c62d commit 452422e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ incremental = false
overflow-checks = true

[workspace.dependencies]
neutron-sdk = { package = "neutron-sdk", git = "https://github.com/neutron-org/neutron-sdk", branch = "main" }
neutron-std = { git = "https://github.com/neutron-org/neutron-std", branch = "main" }
neutron-sdk = { package = "neutron-sdk", git = "https://github.com/neutron-org/neutron-sdk", branch = "feat/respect-gogoproto-nullable" }
neutron-std = { git = "https://github.com/neutron-org/neutron-std", branch = "feat/respect-gogoproto-nullable" }

prost = "0.12.4"
prost-types = "0.12.4"
Expand Down
6 changes: 3 additions & 3 deletions contracts/dex_grpc/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ pub fn execute(
token_in,
token_out,
tick_index_in_to_out,
limit_sell_price,
limit_sell_price: Some(limit_sell_price),
amount_in,
order_type,
expiration_time,
max_amount_out,
min_average_sell_price: "".to_string(),
max_amount_out: Some(max_amount_out),
min_average_sell_price: None,
})),
ExecuteMsg::WithdrawFilledLimitOrder { tranche_key } => {
Ok(Response::new().add_message(MsgWithdrawFilledLimitOrder {
Expand Down

0 comments on commit 452422e

Please sign in to comment.