Skip to content

Commit 6962624

Browse files
committed
fix: fixed incorrect reversion
1 parent dcf2e78 commit 6962624

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/contracts/cw-ica-owner/src/contract.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ mod execute {
157157
return Err(ContractError::IcaInfoNotSet {});
158158
};
159159

160-
let cw_ica_contract = CwIcaControllerContract::new(Addr::unchecked(&ica_info.ica_addr));
160+
let cw_ica_contract = CwIcaControllerContract::new(Addr::unchecked(&ica_state.contract_addr));
161161

162162
let ica_packet = match ica_info.tx_encoding {
163163
TxEncoding::Protobuf => {

0 commit comments

Comments
 (0)