erigon-pulse/consensus/aura/contracts/embed.go
Somnath Banerjee 71231140a5
Block Gas limit contract integration for Chiado (#7727)
Changes summary:
- Continue with the gasLimit check skip in ``verifyHeader`` of
``merge.go`` for unless pre-merge block and blockGasLimitContract
present
- Refactor ``aura.go`` a bit
- Have ``sysCall`` method customized to be able to call state (contract)
at a parent (or any other) header state
2023-06-19 22:06:51 +05:30

21 lines
298 B
Go

package contracts
import (
_ "embed"
)
//go:embed block_reward.json
var BlockReward []byte
//go:embed certifier.json
var Certifier []byte
//go:embed registrar.json
var Registrar []byte
//go:embed withdrawal.json
var Withdrawal []byte
//go:embed block_gas_limit.json
var BlockGasLimit []byte