From 30ed76a643227d664fb3a36e44b2f86dc77298ac Mon Sep 17 00:00:00 2001 From: jagdeep sidhu Date: Mon, 7 Oct 2024 11:27:40 -0700 Subject: [PATCH] Update evm.go --- core/vm/evm.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/vm/evm.go b/core/vm/evm.go index 63c09a4a30..0cc0d9a485 100644 --- a/core/vm/evm.go +++ b/core/vm/evm.go @@ -38,6 +38,10 @@ type ( // GetHashFunc returns the n'th block hash in the blockchain // and is used by the BLOCKHASH EVM op code. GetHashFunc func(uint64) common.Hash + // SYSCOIN + ReadSYSHashFunc func(uint64) []byte + ReadDataHashFunc func(common.Hash) []byte + GetNEVMAddressFunc func(common.Address) []byte ) func (evm *EVM) precompile(addr common.Address) (PrecompiledContract, bool) {