mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
Update evm.go
This commit is contained in:
parent
2c22686452
commit
5ef6bc3d31
1 changed files with 4 additions and 1 deletions
|
|
@ -33,7 +33,10 @@ import (
|
||||||
type ChainContext interface {
|
type ChainContext interface {
|
||||||
// Engine retrieves the chain's consensus engine.
|
// Engine retrieves the chain's consensus engine.
|
||||||
Engine() 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 returns the header corresponding to the hash/number argument pair.
|
||||||
GetHeader(common.Hash, uint64) *types.Header
|
GetHeader(common.Hash, uint64) *types.Header
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue