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

13 lines
176 B

10 years ago
package pow
import "math/big"
type Block interface {
Difficulty() *big.Int
10 years ago
HashNoNonce() []byte
Nonce() []byte
Number() *big.Int
MixDigest() []byte
SeedHash() []byte
10 years ago
}