Skip to content

Commit

Permalink
chore: bump cosmwasm-x to 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bdeneux committed Aug 3, 2024
1 parent 02f1ea3 commit 061419b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ axone-objectarium = { path = "contracts/axone-objectarium", features = [
axone-objectarium-client = { path = "packages/axone-objectarium-client" }
axone-rdf = { path = "packages/axone-rdf" }
axone-wasm = { path = "packages/axone-wasm" }
cosmwasm-schema = "2.0.4"
cosmwasm-std = { version = "2.0.4", features = ["cosmwasm_2_0"] }
cosmwasm-schema = "2.1.1"
cosmwasm-std = { version = "2.1.1", features = ["cosmwasm_2_1"] }
cosmwasm-storage = "1.5.2"
cw-multi-test = "2.1.0"
cw-storage-plus = "2.0.0"
Expand Down
3 changes: 1 addition & 2 deletions contracts/axone-law-stone/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1065,11 +1065,10 @@ mod tests {

for case in cases {
let mut deps = mock_dependencies();
let creator = deps.api.addr_make(case.0);
deps.querier.update_wasm(move |req| match req {
WasmQuery::ContractInfo { .. } => {
let contract_info =
ContractInfoResponse::new(0, creator.clone(), None, false, None);
ContractInfoResponse::new(0, addr(case.0), None, false, None);

SystemResult::Ok(ContractResult::Ok(to_json_binary(&contract_info).unwrap()))
}
Expand Down

0 comments on commit 061419b

Please sign in to comment.