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

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