mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 09:37:38 +00:00
71231140a5
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
21 lines
298 B
Go
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
|