From bab83016f902201ac6634d35b719fe9f6a79c7ae Mon Sep 17 00:00:00 2001 From: OxMMty Date: Sat, 28 Sep 2024 19:55:57 +0900 Subject: [PATCH] Dev (#48) * fix Co-authored-by: oxmmty * fix Co-authored-by: oxmmty * fix Co-authored-by: oxmmty * change state.rs file * change TimeOver * change cw_storage_plus * change cw_stoage_plus * change DepsMut parameter * changed InstantiateMsg * change MessageInfo * change InstantiateMsg * change try_receive_nft funcion * change info and tichet_price * change nft_contract addr * change raffle_status * change game_state * change ticke_price and total_ticket_count * change token_id * change collection_wallet * cnange game_state * change sold_ticket_count * change totla_ticket_count * change raffle_status * change game_state.raffle_statue * change nft_contract_add * change nft_token_id * change game_state.owner * change game_state.collection_wallet --- src/contract.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/contract.rs b/src/contract.rs index cacd871..3bc6434 100644 --- a/src/contract.rs +++ b/src/contract.rs @@ -378,7 +378,9 @@ fn query_game_info(deps: Deps, game_id: u64) -> StdResult { // owner: game_state.owner, - collection_wallet: game_state.collection_wallet, + + // collection_wallet: game_state.collection_wallet, + end_time: game_state.end_time, }) }