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

import (
    "math/big"

    "github.com/ethereum/go-ethereum/ethtrie"
)

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