forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
444 B
26 lines
444 B
package ethvm
|
|
|
|
import (
|
|
"math/big"
|
|
|
|
"github.com/ethereum/eth-go/ethstate"
|
|
"github.com/ethereum/eth-go/ethutil"
|
|
)
|
|
|
|
type Environment interface {
|
|
State() *ethstate.State
|
|
|
|
Origin() []byte
|
|
BlockNumber() *big.Int
|
|
PrevHash() []byte
|
|
Coinbase() []byte
|
|
Time() int64
|
|
Difficulty() *big.Int
|
|
Value() *big.Int
|
|
BlockHash() []byte
|
|
}
|
|
|
|
type Object interface {
|
|
GetStorage(key *big.Int) *ethutil.Value
|
|
SetStorage(key *big.Int, value *ethutil.Value)
|
|
}
|
|
|