-
Notifications
You must be signed in to change notification settings - Fork 232
/
ghostdag.go
67 lines (56 loc) · 1.84 KB
/
ghostdag.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package externalapi
import (
"math/big"
)
// KType defines the size of GHOSTDAG consensus algorithm K parameter.
type KType byte
// BlockGHOSTDAGData represents GHOSTDAG data for some block
type BlockGHOSTDAGData struct {
blueScore uint64
blueWork *big.Int
selectedParent *DomainHash
mergeSetBlues []*DomainHash
mergeSetReds []*DomainHash
bluesAnticoneSizes map[DomainHash]KType
}
// NewBlockGHOSTDAGData creates a new instance of BlockGHOSTDAGData
func NewBlockGHOSTDAGData(
blueScore uint64,
blueWork *big.Int,
selectedParent *DomainHash,
mergeSetBlues []*DomainHash,
mergeSetReds []*DomainHash,
bluesAnticoneSizes map[DomainHash]KType) *BlockGHOSTDAGData {
return &BlockGHOSTDAGData{
blueScore: blueScore,
blueWork: blueWork,
selectedParent: selectedParent,
mergeSetBlues: mergeSetBlues,
mergeSetReds: mergeSetReds,
bluesAnticoneSizes: bluesAnticoneSizes,
}
}
// BlueScore returns the BlueScore of the block
func (bgd *BlockGHOSTDAGData) BlueScore() uint64 {
return bgd.blueScore
}
// BlueWork returns the BlueWork of the block
func (bgd *BlockGHOSTDAGData) BlueWork() *big.Int {
return bgd.blueWork
}
// SelectedParent returns the SelectedParent of the block
func (bgd *BlockGHOSTDAGData) SelectedParent() *DomainHash {
return bgd.selectedParent
}
// MergeSetBlues returns the MergeSetBlues of the block (not a copy)
func (bgd *BlockGHOSTDAGData) MergeSetBlues() []*DomainHash {
return bgd.mergeSetBlues
}
// MergeSetReds returns the MergeSetReds of the block (not a copy)
func (bgd *BlockGHOSTDAGData) MergeSetReds() []*DomainHash {
return bgd.mergeSetReds
}
// BluesAnticoneSizes returns a map between the blocks in its MergeSetBlues and the size of their anticone
func (bgd *BlockGHOSTDAGData) BluesAnticoneSizes() map[DomainHash]KType {
return bgd.bluesAnticoneSizes
}