penumbra_shielded_pool/fmd/
state_key.rs

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

    pub fn previous() -> &'static str {
        "shielded_pool/fmd_parameters/previous"
    }
}

pub(crate) mod meta_parameters {
    pub fn algorithm_state() -> &'static str {
        "shielded_pool/fmd_meta_parameters/algorithm_state"
    }
}

pub(crate) mod clue_count {
    pub fn current() -> &'static str {
        "shielded_pool/fmd_clue_count/current"
    }

    pub fn previous() -> &'static str {
        "shielded_pool/fmd_clue_count/previous"
    }
}