aboutsummaryrefslogtreecommitdiffstats
path: root/pow/ar/block.go
blob: cc02028cdaf9d2a353f9c5f978648d3ac29ca627 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package ar

import (
    "math/big"
    "github.com/ethereum/eth-go/ethtrie"
)

type Block interface {
    Trie() *ethtrie.Trie
    Diff() *big.Int
}