Skip to content

Commit

Permalink
Dev (#42)
Browse files Browse the repository at this point in the history
* fix

Co-authored-by: oxmmty <[email protected]>

* fix

Co-authored-by: oxmmty <[email protected]>

* fix

Co-authored-by: oxmmty <[email protected]>

* 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
  • Loading branch information
oxmmty authored Sep 27, 2024
1 parent 0d340ed commit 7ca85cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ fn query_game_info(deps: Deps, game_id: u64) -> StdResult<GameResponse> {
.map_err(|_| StdError::generic_err("Game with provided ID does not exist"))?;

Ok(GameResponse {
ticket_price: game_state.ticket_price,
// ticket_price: game_state.ticket_price,
sold_ticket_count: game_state.sold_ticket_count,
total_ticket_count: game_state.total_ticket_count,
raffle_status: game_state.raffle_status,
Expand Down

0 comments on commit 7ca85cc

Please sign in to comment.