mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2024-12-23 11:57:17 +00:00
10 lines
108 B
Go
10 lines
108 B
Go
|
package pow
|
||
|
|
||
|
import "math/big"
|
||
|
|
||
|
type Block interface {
|
||
|
Diff() *big.Int
|
||
|
HashNoNonce() []byte
|
||
|
N() []byte
|
||
|
}
|