Skip to content

Commit 263e6db

Browse files
committed
feat(law): add break stone exec signature
1 parent f82073f commit 263e6db

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed

contracts/cw-law-stone/src/contract.rs

+19-5
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,26 @@ pub fn instantiate(
4949

5050
#[cfg_attr(not(feature = "library"), entry_point)]
5151
pub fn execute(
52-
_deps: DepsMut<'_>,
53-
_env: Env,
54-
_info: MessageInfo,
55-
_msg: ExecuteMsg,
52+
deps: DepsMut<'_>,
53+
env: Env,
54+
info: MessageInfo,
55+
msg: ExecuteMsg,
5656
) -> Result<Response, ContractError> {
57-
Err(NotImplemented {})
57+
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+
}
5872
}
5973

6074
#[cfg_attr(not(feature = "library"), entry_point)]

0 commit comments

Comments
 (0)