Skip to content

Commit 9cfdf86

Browse files
authored
fix: add missing Galileo precompile activation (#1253)
1 parent 53408ef commit 9cfdf86

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

core/vm/evm.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ type (
4747
func (evm *EVM) precompile(addr common.Address) (PrecompiledContract, bool) {
4848
var precompiles map[common.Address]PrecompiledContract
4949
switch {
50+
case evm.chainRules.IsGalileo:
51+
precompiles = PrecompiledContractsGalileo
5052
case evm.chainRules.IsFeynman:
5153
precompiles = PrecompiledContractsFeynman
5254
case evm.chainRules.IsEuclidV2:

params/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
const (
2525
VersionMajor = 5 // Major version component of the current release
2626
VersionMinor = 9 // Minor version component of the current release
27-
VersionPatch = 8 // Patch version component of the current release
27+
VersionPatch = 9 // Patch version component of the current release
2828
VersionMeta = "mainnet" // Version metadata to append to the version string
2929
)
3030

0 commit comments

Comments
 (0)