penumbra_sdk_proto/gen/
cosmos.tx.config.v1.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// This file is @generated by prost-build.
/// Config is the config object of the x/auth/tx package.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct Config {
    /// skip_ante_handler defines whether the ante handler registration should be skipped in case an app wants to override
    /// this functionality.
    #[prost(bool, tag = "1")]
    pub skip_ante_handler: bool,
    /// skip_post_handler defines whether the post handler registration should be skipped in case an app wants to override
    /// this functionality.
    #[prost(bool, tag = "2")]
    pub skip_post_handler: bool,
}
impl ::prost::Name for Config {
    const NAME: &'static str = "Config";
    const PACKAGE: &'static str = "cosmos.tx.config.v1";
    fn full_name() -> ::prost::alloc::string::String {
        "cosmos.tx.config.v1.Config".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/cosmos.tx.config.v1.Config".into()
    }
}