Skip to content

Commit

Permalink
Replaced todo!() with unimplemented!(). (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
DariuszDepta authored Oct 10, 2024
1 parent dc9885f commit 19eb52b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,21 +297,20 @@ where
/// // contract implementation
/// mod echo {
/// // contract entry points not shown here
/// # use std::todo;
/// # use cosmwasm_std::{Binary, Deps, DepsMut, Empty, Env, MessageInfo, Response, StdError, SubMsg, WasmMsg};
/// # use serde::{Deserialize, Serialize};
/// # use cw_multi_test::{Contract, ContractWrapper};
/// #
/// # fn instantiate(_: DepsMut, _: Env, _: MessageInfo, _: Empty) -> Result<Response, StdError> {
/// # todo!()
/// # unimplemented!()
/// # }
/// #
/// # fn execute(_: DepsMut, _: Env, _info: MessageInfo, msg: WasmMsg) -> Result<Response, StdError> {
/// # todo!()
/// # unimplemented!()
/// # }
/// #
/// # fn query(_deps: Deps, _env: Env, _msg: Empty) -> Result<Binary, StdError> {
/// # todo!()
/// # unimplemented!()
/// # }
/// #
/// pub fn contract() -> Box<dyn Contract<Empty>> {
Expand Down

0 comments on commit 19eb52b

Please sign in to comment.