Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
- [\#350](https://github.com/cosmos/evm/pull/350) Fix p256 precompile test flakiness
- [\#376](https://github.com/cosmos/evm/pull/376) Fix precompile initialization for local node development script
- [\#384](https://github.com/cosmos/evm/pull/384) Fix debug_traceTransaction RPC failing with block height mismatch errors
- [\#441](https://github.com/cosmos/evm/pull/441) Align precompiles map with available static check to Prague.

### IMPROVEMENTS

Expand Down
2 changes: 1 addition & 1 deletion evmd/precompiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func NewAvailableStaticPrecompiles(
opt(&options)
}
// Clone the mapping from the latest EVM fork.
precompiles := maps.Clone(vm.PrecompiledContractsBerlin)
precompiles := maps.Clone(vm.PrecompiledContractsPrague)

// secp256r1 precompile as per EIP-7212
p256Precompile := &p256.Precompile{}
Expand Down
Loading