SpideyPool192
|
a57e5f4fd9
|
changed package name from tharsis/ethermint to cerc-io/laconicd
|
2022-09-07 12:06:11 +05:30 |
|
Sai Kumar
|
fc06fbfb48
|
refactor: updated to ante handlers support
|
2022-06-07 08:56:18 -05:00 |
|
Sai Kumar
|
a0e2858d4f
|
WIP: upgrade cosmos-sdk from 0.45 to SMT 0.46
|
2022-04-11 13:39:39 +05:30 |
|
yihuang
|
ade84319e6
|
evm: refactor statedb implementation (#729)
* initial statedb module
unit tests
unit tests
keeper implementation
extract TxConfig
remove unused code
* keeper integration
* fix unit tests
* Apply suggestions from code review
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
* fixup! initial statedb module
* changelog
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
|
2022-01-05 08:28:27 +01:00 |
|
yihuang
|
eb17366dcc
|
fix: consistent BaseFee check logic (#855)
Closes: #755
```
if not london_hardfork {
# reject DynamicFeeTx
# no `baseFeePerGas` field in block response
# baseFee = nil
} else {
# allow DynamicFeeTx
# add `baseFeePerGas` field in block response
if feemarketParams.NoBaseFee or height < feemarketParams.EnableHeight {
# baseFee = 0
} else {
# init baseFee to initBaseFee and adjust in later blocks
}
}
```
Update x/evm/keeper/keeper.go
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
add unit tests
Update app/ante/utils_test.go
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
changelog
|
2021-12-28 07:59:28 +00:00 |
|
Adu
|
e04422b6ff
|
fix: tx fields are not authenticated by signature (#703)
Co-authored-by: Muggle-Du <adudu@CNMAC0342.local>
|
2021-11-08 14:00:35 +01:00 |
|