Open joemonem opened 2 months ago
[!WARNING]
Walkthrough skipped
File diffs could not be summarized.
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
@mdjakovic0920
Mind taking a look at this for the issue you raised?
https://github.com/andromedaprotocol/andromeda-core/issues/536
@crnbarr93 @joemonem
I can not use InjectiveQueryWrapper
as CustomQuery
for query from Injective.
For example:
#[cfg_attr(not(feature = "library"), entry_point)]
pub fn execute(
deps: DepsMut<injective_cosmwasm::InjectiveQueryWrapper>,
env: Env,
info: MessageInfo,
msg: ExecuteMsg,
) -> Result<Response, ContractError> {
Here, deps: DepsMut<injective_cosmwasm::InjectiveQueryWrapper>
occurs an error:
Motivation
Closes #536
Implementation
Adjusted
ExecuteContext
to the following:and applied all the necessary adjustments to accommodate the above change
Testing
No tests were affected nor created
Version Changes
std
from 1.1.1 to 1.2.1