Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cosmwasm/ibc-union/app/ucs03-zkgm/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ pub fn verify_token_order_v2(

/// Handles IBC packet timeouts by either processing forwarded packet timeouts or
/// executing timeout logic for normal packets.
fn timeout_packet(
pub(crate) fn timeout_packet(
deps: DepsMut,
env: Env,
info: MessageInfo,
Expand Down Expand Up @@ -573,7 +573,7 @@ fn timeout_packet(
#[allow(clippy::too_many_arguments)]
/// Handles the internal timeout logic for a packet.
/// Processes timeouts based on instruction type and executes appropriate refund/cleanup actions.
fn timeout_internal(
pub(crate) fn timeout_internal(
mut deps: DepsMut,
env: Env,
info: MessageInfo,
Expand Down Expand Up @@ -3091,7 +3091,7 @@ pub fn migrate(
/// Creates a WasmMsg for interacting with the token minter contract.
/// This is a helper function to construct properly formatted wasm messages
/// for token minting, burning, and other token operations.
fn make_wasm_msg(
pub(crate) fn make_wasm_msg(
msg: impl Into<ucs03_zkgm_token_minter_api::ExecuteMsg>,
minter: impl Into<String>,
funds: Vec<Coin>,
Expand Down
Loading