penumbra_sdk_shielded_pool/fmd/
state_key.rs

1pub mod parameters {
2    pub fn current() -> &'static str {
3        "shielded_pool/fmd_parameters/current"
4    }
5
6    pub fn previous() -> &'static str {
7        "shielded_pool/fmd_parameters/previous"
8    }
9}
10
11pub(crate) mod meta_parameters {
12    pub fn algorithm_state() -> &'static str {
13        "shielded_pool/fmd_meta_parameters/algorithm_state"
14    }
15}
16
17pub(crate) mod clue_count {
18    pub fn current() -> &'static str {
19        "shielded_pool/fmd_clue_count/current"
20    }
21
22    pub fn previous() -> &'static str {
23        "shielded_pool/fmd_clue_count/previous"
24    }
25}