Skip to content

Commit

Permalink
put priority under deduct
Browse files Browse the repository at this point in the history
  • Loading branch information
amaury1093 committed May 18, 2022
1 parent c113828 commit 579f800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/auth/ante/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error) {
NewMempoolFeeDecorator(),
NewValidateBasicDecorator(),
NewTxTimeoutHeightDecorator(),
NewTxPriorityDecorator(),
NewValidateMemoDecorator(options.AccountKeeper),
NewConsumeGasForTxSizeDecorator(options.AccountKeeper),
NewDeductFeeDecorator(options.AccountKeeper, options.BankKeeper, options.FeegrantKeeper),
NewTxPriorityDecorator(),
NewSetPubKeyDecorator(options.AccountKeeper), // SetPubKeyDecorator must be called before all signature verification decorators
NewValidateSigCountDecorator(options.AccountKeeper),
NewSigGasConsumeDecorator(options.AccountKeeper, sigGasConsumer),
Expand Down

0 comments on commit 579f800

Please sign in to comment.