fix(rpc): Fix GasPrice
calculation with relation to MinGasPrice
(#1138)
* fix gasPrice minGasPrice comparison * update changelog Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
This commit is contained in:
parent
667940d890
commit
494d646539
@ -53,6 +53,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
|
|||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
* (evm) [tharsis#1118](https://github.com/evmos/ethermint/pull/1118) Fix `Type()` `Account` method `EmptyCodeHash` comparison
|
* (evm) [tharsis#1118](https://github.com/evmos/ethermint/pull/1118) Fix `Type()` `Account` method `EmptyCodeHash` comparison
|
||||||
|
* (rpc) [tharsis#1138](https://github.com/evmos/ethermint/pull/1138) Fix GasPrice calculation with relation to `MinGasPrice`
|
||||||
|
|
||||||
## [v0.16.0] - 2022-06-06
|
## [v0.16.0] - 2022-06-06
|
||||||
|
|
||||||
|
@ -216,7 +216,7 @@ func (e *PublicAPI) GasPrice() (*hexutil.Big, error) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
minGasPriceInt := minGasPrice.BigInt()
|
minGasPriceInt := minGasPrice.TruncateInt().BigInt()
|
||||||
if result.Cmp(minGasPriceInt) < 0 {
|
if result.Cmp(minGasPriceInt) < 0 {
|
||||||
result = minGasPriceInt
|
result = minGasPriceInt
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user