Skip to content

Commit

Permalink
[1760]: Add the tx config.proto file which was previously not include…
Browse files Browse the repository at this point in the history
…d due to a gitignore entry.
  • Loading branch information
SpicyLemon committed Jun 11, 2024
1 parent c6ca390 commit b5c27c4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ bin/
build/
config/
!cmd/provenanced/config/
!third_party/**/config/
data/
.idea/
*.swp
Expand Down
20 changes: 20 additions & 0 deletions third_party/proto/cosmos/tx/config/v1/config.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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;
}

0 comments on commit b5c27c4

Please sign in to comment.