Official Go implementation of the Ethereum protocol
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.
go-ethereum/pow/block.go

22 lines
363 B

10 years ago
package pow
import (
"math/big"
10 years ago
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
)
10 years ago
type Block interface {
Difficulty() *big.Int
10 years ago
HashNoNonce() common.Hash
Nonce() uint64
10 years ago
MixDigest() common.Hash
NumberU64() uint64
}
type ChainManager interface {
GetBlockByNumber(uint64) *types.Block
CurrentBlock() *types.Block
10 years ago
}