Skip to content

Commit

Permalink
- fixed the return value on MaxGasPriceSetGuardian method for the d…
Browse files Browse the repository at this point in the history
…isabled fee handler
  • Loading branch information
iulianpascalau committed Nov 10, 2023
1 parent 0101225 commit a3d20d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genesis/process/disabled/feeHandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func (fh *FeeHandler) ExtraGasLimitGuardedTx() uint64 {

// MaxGasPriceSetGuardian returns 0
func (fh *FeeHandler) MaxGasPriceSetGuardian() uint64 {
return 0
return math.MaxUint64
}

// MaxGasLimitPerBlock returns max uint64
Expand Down

0 comments on commit a3d20d1

Please sign in to comment.