mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-14 06:18:20 +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
|
|
}
|