diff --git a/src/ethereum_test_forks/forks/forks.py b/src/ethereum_test_forks/forks/forks.py index 523983ce2c..c3c868fd8d 100644 --- a/src/ethereum_test_forks/forks/forks.py +++ b/src/ethereum_test_forks/forks/forks.py @@ -1133,16 +1133,14 @@ def precompiles(cls, block_number: int = 0, timestamp: int = 0) -> List[Address] At Prague, pre-compile for BLS operations are added: G1ADD = 0x0B - G1MUL = 0x0C - G1MSM = 0x0D - G2ADD = 0x0E - G2MUL = 0x0F - G2MSM = 0x10 - PAIRING = 0x11 - MAP_FP_TO_G1 = 0x12 - MAP_FP2_TO_G2 = 0x13 - """ - return list(Address(i) for i in range(0xB, 0x13 + 1)) + super(Prague, cls).precompiles( + G1MSM = 0x0C + G2ADD = 0x0D + G2MSM = 0x0E + PAIRING = 0x0F + MAP_FP_TO_G1 = 0x10 + MAP_FP2_TO_G2 = 0x11 + """ + return list(Address(i) for i in range(0xB, 0x11 + 1)) + super(Prague, cls).precompiles( block_number, timestamp )