mirror of
https://github.com/kaspanet/kaspad.git
synced 2026-03-22 08:03:34 +00:00
10 lines
216 B
Go
10 lines
216 B
Go
package externalapi
|
|
|
|
import "math/big"
|
|
|
|
// PruningPointProof is the data structure holding the pruning point proof
|
|
type PruningPointProof struct {
|
|
Headers []BlockHeader
|
|
PruningPointBlueWork *big.Int
|
|
}
|