Skip to content

Commit

Permalink
chore: another issue ticket
Browse files Browse the repository at this point in the history
  • Loading branch information
Unique-Divine committed Jun 7, 2024
1 parent 36745fd commit af7e7b3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,9 @@ func NewAnteHandlerNonEVM(
authante.NewSetUpContextDecorator(),
wasmkeeper.NewLimitSimulationGasDecorator(opts.WasmConfig.SimulationGasLimit),
wasmkeeper.NewCountTXDecorator(opts.TxCounterStoreKey),
// TODO: UD bug(security): Authz is unsafe. Let's include a guard to make
// TODO: bug(security): Authz is unsafe. Let's include a guard to make
// things safer.
// ticket: https://github.com/NibiruChain/nibiru/issues/1915
authante.NewExtensionOptionsDecorator(opts.ExtensionOptionChecker),
authante.NewValidateBasicDecorator(),
authante.NewTxTimeoutHeightDecorator(),
Expand All @@ -88,7 +89,8 @@ func NewAnteHandlerNonEVM(
ante.AnteDecoratorStakingCommission{},
// ----------- Ante Handlers: Gas
authante.NewConsumeGasForTxSizeDecorator(opts.AccountKeeper),
// TODO: UD spike(security) Does minimum gas price of 0 pose a risk?
// TODO: spike(security): Does minimum gas price of 0 pose a risk?
// ticket: https://github.com/NibiruChain/nibiru/issues/1916
authante.NewDeductFeeDecorator(
opts.AccountKeeper, opts.BankKeeper, opts.FeegrantKeeper, opts.TxFeeChecker),
// ----------- Ante Handlers: devgas
Expand Down

0 comments on commit af7e7b3

Please sign in to comment.