Skip to main content

confium_daemon/methods/
tc.rs

1//! Threshold computing (TC) methods.
2//!
3//! Skeleton handlers pending per-connection handle management and the
4//! TC session store.
5
6use crate::pending_method;
7
8pending_method!(
9    tc_session_create,
10    "tc_session_create",
11    "requires per-connection handle management (pending)"
12);
13pending_method!(
14    tc_session_round,
15    "tc_session_round",
16    "requires per-connection handle management (pending)"
17);
18pending_method!(
19    tc_session_result,
20    "tc_session_result",
21    "requires per-connection handle management (pending)"
22);