Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Aursen committed Feb 12, 2024
1 parent 9e6a236 commit 5df55b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/injective-cosmwasm/src/exchange_mock_querier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ impl WasmMockQuerier {
None => panic!("Unknown smart query"),
},
WasmQuery::Raw { contract_addr, key } => match &self.raw_query_handler {
Some(handler) => handler.handle(&contract_addr, key),
Some(handler) => handler.handle(contract_addr, key),
None => panic!("Unknown raw query"),
},
_ => panic!("unsupported"),
Expand Down

0 comments on commit 5df55b8

Please sign in to comment.