Update evm.go

This commit is contained in:
jagdeep sidhu 2024-10-07 11:30:31 -07:00
parent 2c22686452
commit 5ef6bc3d31

View file

@ -33,7 +33,10 @@ import (
type ChainContext interface {
// Engine retrieves the chain's consensus engine.
Engine() consensus.Engine
// SYSCOIN
ReadSYSHash(uint64) []byte
ReadDataHash(common.Hash) []byte
GetNEVMAddress(common.Address) []byte
// GetHeader returns the header corresponding to the hash/number argument pair.
GetHeader(common.Hash, uint64) *types.Header
}