updated vm env

This commit is contained in:
obscuren
2015-03-16 23:17:28 +01:00
parent 843db4978e
commit 94505146a2
3 changed files with 23 additions and 21 deletions

View File

@ -3,14 +3,15 @@ package pow
import (
"math/big"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
)
type Block interface {
Difficulty() *big.Int
HashNoNonce() []byte
HashNoNonce() common.Hash
Nonce() uint64
MixDigest() []byte
MixDigest() common.Hash
NumberU64() uint64
}