-
Notifications
You must be signed in to change notification settings - Fork 671
/
post_fork_option.go
143 lines (119 loc) · 3.48 KB
/
post_fork_option.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
// Copyright (C) 2019-2023, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package proposervm
import (
"context"
"time"
"go.uber.org/zap"
"github.com/ava-labs/avalanchego/ids"
"github.com/ava-labs/avalanchego/snow/choices"
"github.com/ava-labs/avalanchego/vms/proposervm/block"
)
var _ PostForkBlock = (*postForkOption)(nil)
// The parent of a *postForkOption must be a *postForkBlock.
type postForkOption struct {
block.Block
postForkCommonComponents
timestamp time.Time
}
func (b *postForkOption) Timestamp() time.Time {
if b.Status() == choices.Accepted {
return b.vm.lastAcceptedTime
}
return b.timestamp
}
func (b *postForkOption) Accept(ctx context.Context) error {
if err := b.acceptOuterBlk(); err != nil {
return err
}
return b.acceptInnerBlk(ctx)
}
func (b *postForkOption) acceptOuterBlk() error {
// Update in-memory references
b.status = choices.Accepted
return b.vm.acceptPostForkBlock(b)
}
func (b *postForkOption) acceptInnerBlk(ctx context.Context) error {
// mark the inner block as accepted and all conflicting inner blocks as
// rejected
return b.vm.Tree.Accept(ctx, b.innerBlk)
}
func (b *postForkOption) Reject(context.Context) error {
// we do not reject the inner block here because that block may be contained
// in the proposer block that causing this block to be rejected.
delete(b.vm.verifiedBlocks, b.ID())
b.status = choices.Rejected
return nil
}
func (b *postForkOption) Status() choices.Status {
if b.status == choices.Accepted && b.Height() > b.vm.lastAcceptedHeight {
return choices.Processing
}
return b.status
}
func (b *postForkOption) Parent() ids.ID {
return b.ParentID()
}
// If Verify returns nil, Accept or Reject is eventually called on [b] and
// [b.innerBlk].
func (b *postForkOption) Verify(ctx context.Context) error {
parent, err := b.vm.getBlock(ctx, b.ParentID())
if err != nil {
return err
}
b.timestamp = parent.Timestamp()
return parent.verifyPostForkOption(ctx, b)
}
func (*postForkOption) verifyPreForkChild(context.Context, *preForkBlock) error {
// A *preForkBlock's parent must be a *preForkBlock
return errUnsignedChild
}
func (b *postForkOption) verifyPostForkChild(ctx context.Context, child *postForkBlock) error {
parentTimestamp := b.Timestamp()
parentPChainHeight, err := b.pChainHeight(ctx)
if err != nil {
return err
}
return b.postForkCommonComponents.Verify(
ctx,
parentTimestamp,
parentPChainHeight,
child,
)
}
func (*postForkOption) verifyPostForkOption(context.Context, *postForkOption) error {
// A *postForkOption's parent can't be a *postForkOption
return errUnexpectedBlockType
}
func (b *postForkOption) buildChild(ctx context.Context) (Block, error) {
parentID := b.ID()
parentPChainHeight, err := b.pChainHeight(ctx)
if err != nil {
b.vm.ctx.Log.Error("unexpected build block failure",
zap.String("reason", "failed to fetch parent's P-chain height"),
zap.Stringer("parentID", parentID),
zap.Error(err),
)
return nil, err
}
return b.postForkCommonComponents.buildChild(
ctx,
parentID,
b.Timestamp(),
parentPChainHeight,
)
}
// This block's P-Chain height is its parent's P-Chain height
func (b *postForkOption) pChainHeight(ctx context.Context) (uint64, error) {
parent, err := b.vm.getBlock(ctx, b.ParentID())
if err != nil {
return 0, err
}
return parent.pChainHeight(ctx)
}
func (b *postForkOption) setStatus(status choices.Status) {
b.status = status
}
func (b *postForkOption) getStatelessBlk() block.Block {
return b.Block
}