diff --git a/src/contract.rs b/src/contract.rs index a218076..0eafc5a 100644 --- a/src/contract.rs +++ b/src/contract.rs @@ -46,17 +46,6 @@ pub fn execute( } } -// sudo msg -#[cfg_attr(not(feature = "library"), entry_point)] -pub fn sudo(deps: DepsMut, _env: Env, msg: SudoMsg) -> Result { - match msg { - SudoMsg::ClockEndBlock {} => { - increment(deps)?; - Ok(Response::new()) - } - } -} - #[cfg_attr(not(feature = "library"), entry_point)] pub fn query(deps: Deps, _env: Env, msg: QueryMsg) -> StdResult { match msg {