Skip to content

Commit

Permalink
feat: bumped injective-std
Browse files Browse the repository at this point in the history
  • Loading branch information
maxrobot committed Oct 9, 2024
1 parent 524d55f commit 9c5f16d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions packages/injective-test-tube/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "injective-test-tube"
repository = "https://github.com/InjectiveLabs/test-tube"
version = "1.13.2"
version = "1.13.2-auction"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

exclude = [ "injective-core", "test_artifacts" ]
Expand All @@ -16,7 +16,7 @@ cosmwasm-schema = { version = "2.1.1" }
cosmwasm-std = { version = "2.1.0", features = [ "abort", "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate" ] }
hex = "0.4.2"
injective-cosmwasm = { version = "0.3.0" }
injective-std = { version = "1.13.2-auction" }
injective-std = { version = "=1.13.2-auction" }
prost = "0.12.3"
serde = "1.0.144"
serde_json = "1.0.85"
Expand Down
12 changes: 5 additions & 7 deletions packages/injective-test-tube/src/module/auction.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
use injective_std::types::injective::auction::v1beta1::{
LastAuctionResult, QueryAuctionParamsRequest, QueryAuctionParamsResponse,
QueryCurrentAuctionBasketRequest, QueryCurrentAuctionBasketResponse,
QueryLastAuctionResultRequest, QueryLastAuctionResultResponse, QueryModuleStateRequest,
QueryModuleStateResponse,
QueryAuctionParamsRequest, QueryAuctionParamsResponse, QueryCurrentAuctionBasketRequest,
QueryCurrentAuctionBasketResponse, QueryLastAuctionResultRequest,
QueryLastAuctionResultResponse, QueryModuleStateRequest, QueryModuleStateResponse,
};
use test_tube_inj::fn_query;

Expand Down Expand Up @@ -49,8 +48,7 @@ mod tests {
},
};

use crate::{Auction, InjectiveTestApp, Wasm};
use cosmwasm_schema::cw_serde;
use crate::{Auction, InjectiveTestApp};
use test_tube_inj::Module;

#[test]
Expand Down Expand Up @@ -81,7 +79,7 @@ mod tests {
LastAuctionResult {
amount: Some(BaseCoin {
denom: "inj".to_string(),
amount: "100000".to_string()
amount: "0".to_string()
}),
winner: "".to_string(),
round: 0u64,
Expand Down

0 comments on commit 9c5f16d

Please sign in to comment.