mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
20 lines
624 B
Protocol Buffer
20 lines
624 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package cosmos.tx.config.v1;
|
||
|
|
||
|
import "cosmos/app/v1alpha1/module.proto";
|
||
|
|
||
|
// Config is the config object of the x/auth/tx package.
|
||
|
message Config {
|
||
|
option (cosmos.app.v1alpha1.module) = {
|
||
|
go_import: "github.com/cosmos/cosmos-sdk/x/auth/tx"
|
||
|
};
|
||
|
|
||
|
// skip_ante_handler defines whether the ante handler registration should be skipped in case an app wants to override
|
||
|
// this functionality.
|
||
|
bool skip_ante_handler = 1;
|
||
|
|
||
|
// skip_post_handler defines whether the post handler registration should be skipped in case an app wants to override
|
||
|
// this functionality.
|
||
|
bool skip_post_handler = 2;
|
||
|
}
|