-
Notifications
You must be signed in to change notification settings - Fork 670
/
commit_block.go
79 lines (65 loc) · 1.62 KB
/
commit_block.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
68
69
70
71
72
73
74
75
76
77
78
79
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package block
import (
"time"
"github.com/ava-labs/avalanchego/ids"
"github.com/ava-labs/avalanchego/snow"
"github.com/ava-labs/avalanchego/vms/platformvm/txs"
)
var (
_ BanffBlock = (*BanffCommitBlock)(nil)
_ Block = (*ApricotCommitBlock)(nil)
)
type BanffCommitBlock struct {
Time uint64 `serialize:"true" json:"time"`
ApricotCommitBlock `serialize:"true"`
}
func (b *BanffCommitBlock) Timestamp() time.Time {
return time.Unix(int64(b.Time), 0)
}
func (b *BanffCommitBlock) Visit(v Visitor) error {
return v.BanffCommitBlock(b)
}
func NewBanffCommitBlock(
timestamp time.Time,
parentID ids.ID,
height uint64,
) (*BanffCommitBlock, error) {
blk := &BanffCommitBlock{
Time: uint64(timestamp.Unix()),
ApricotCommitBlock: ApricotCommitBlock{
CommonBlock: CommonBlock{
PrntID: parentID,
Hght: height,
},
},
}
return blk, initialize(blk, &blk.CommonBlock)
}
type ApricotCommitBlock struct {
CommonBlock `serialize:"true"`
}
func (b *ApricotCommitBlock) initialize(bytes []byte) error {
b.CommonBlock.initialize(bytes)
return nil
}
func (*ApricotCommitBlock) InitCtx(*snow.Context) {}
func (*ApricotCommitBlock) Txs() []*txs.Tx {
return nil
}
func (b *ApricotCommitBlock) Visit(v Visitor) error {
return v.ApricotCommitBlock(b)
}
func NewApricotCommitBlock(
parentID ids.ID,
height uint64,
) (*ApricotCommitBlock, error) {
blk := &ApricotCommitBlock{
CommonBlock: CommonBlock{
PrntID: parentID,
Hght: height,
},
}
return blk, initialize(blk, &blk.CommonBlock)
}