We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f82073f commit 263e6dbCopy full SHA for 263e6db
contracts/cw-law-stone/src/contract.rs
@@ -49,12 +49,26 @@ pub fn instantiate(
49
50
#[cfg_attr(not(feature = "library"), entry_point)]
51
pub fn execute(
52
- _deps: DepsMut<'_>,
53
- _env: Env,
54
- _info: MessageInfo,
55
- _msg: ExecuteMsg,
+ deps: DepsMut<'_>,
+ env: Env,
+ info: MessageInfo,
+ msg: ExecuteMsg,
56
) -> Result<Response, ContractError> {
57
- Err(NotImplemented {})
+ match msg {
58
+ ExecuteMsg::BreakStone => execute::break_stone(deps, env, info),
59
+ }
60
+}
61
+
62
+pub mod execute {
63
+ use super::*;
64
65
+ pub fn break_stone(
66
+ _deps: DepsMut<'_>,
67
+ _env: Env,
68
+ _info: MessageInfo,
69
+ ) -> Result<Response, ContractError> {
70
+ Err(NotImplemented {})
71
72
}
73
74
0 commit comments