2014-12-10 15:45:16 +00:00
|
|
|
package pow
|
|
|
|
|
2015-02-28 19:58:37 +00:00
|
|
|
import (
|
|
|
|
"math/big"
|
2015-03-03 20:04:31 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2015-02-28 19:58:37 +00:00
|
|
|
)
|
2014-12-10 15:45:16 +00:00
|
|
|
|
|
|
|
type Block interface {
|
2014-12-23 12:48:44 +00:00
|
|
|
Difficulty() *big.Int
|
2014-12-10 15:45:16 +00:00
|
|
|
HashNoNonce() []byte
|
2015-03-03 20:04:31 +00:00
|
|
|
Nonce() uint64
|
2015-02-28 01:56:24 +00:00
|
|
|
MixDigest() []byte
|
2015-02-28 19:58:37 +00:00
|
|
|
NumberU64() uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
type ChainManager interface {
|
|
|
|
GetBlockByNumber(uint64) *types.Block
|
|
|
|
CurrentBlock() *types.Block
|
2014-12-10 15:45:16 +00:00
|
|
|
}
|