@lodestar/fork-choice 1.41.0-dev.f2caa915ab → 1.41.0-dev.f7a5f4ddda
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/forkChoice/errors.d.ts +9 -1
- package/lib/forkChoice/errors.d.ts.map +1 -1
- package/lib/forkChoice/errors.js +10 -3
- package/lib/forkChoice/errors.js.map +1 -1
- package/lib/forkChoice/forkChoice.d.ts +75 -19
- package/lib/forkChoice/forkChoice.d.ts.map +1 -1
- package/lib/forkChoice/forkChoice.js +301 -117
- package/lib/forkChoice/forkChoice.js.map +1 -1
- package/lib/forkChoice/interface.d.ts +54 -21
- package/lib/forkChoice/interface.d.ts.map +1 -1
- package/lib/forkChoice/interface.js +6 -3
- package/lib/forkChoice/interface.js.map +1 -1
- package/lib/forkChoice/safeBlocks.js.map +1 -1
- package/lib/forkChoice/store.d.ts +40 -16
- package/lib/forkChoice/store.d.ts.map +1 -1
- package/lib/forkChoice/store.js +22 -4
- package/lib/forkChoice/store.js.map +1 -1
- package/lib/index.d.ts +4 -4
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +2 -2
- package/lib/index.js.map +1 -1
- package/lib/metrics.d.ts.map +1 -1
- package/lib/metrics.js.map +1 -1
- package/lib/protoArray/computeDeltas.d.ts.map +1 -1
- package/lib/protoArray/computeDeltas.js +3 -0
- package/lib/protoArray/computeDeltas.js.map +1 -1
- package/lib/protoArray/errors.d.ts +15 -2
- package/lib/protoArray/errors.d.ts.map +1 -1
- package/lib/protoArray/errors.js +7 -2
- package/lib/protoArray/errors.js.map +1 -1
- package/lib/protoArray/interface.d.ts +20 -2
- package/lib/protoArray/interface.d.ts.map +1 -1
- package/lib/protoArray/interface.js +19 -1
- package/lib/protoArray/interface.js.map +1 -1
- package/lib/protoArray/protoArray.d.ts +219 -24
- package/lib/protoArray/protoArray.d.ts.map +1 -1
- package/lib/protoArray/protoArray.js +748 -133
- package/lib/protoArray/protoArray.js.map +1 -1
- package/package.json +9 -9
- package/src/forkChoice/errors.ts +7 -2
- package/src/forkChoice/forkChoice.ts +384 -126
- package/src/forkChoice/interface.ts +72 -20
- package/src/forkChoice/store.ts +52 -20
- package/src/index.ts +10 -2
- package/src/protoArray/computeDeltas.ts +6 -0
- package/src/protoArray/errors.ts +7 -1
- package/src/protoArray/interface.ts +36 -3
- package/src/protoArray/protoArray.ts +880 -134
|
@@ -1,9 +1,14 @@
|
|
|
1
|
-
import { GENESIS_EPOCH } from "@lodestar/params";
|
|
1
|
+
import { GENESIS_EPOCH, PTC_SIZE } from "@lodestar/params";
|
|
2
2
|
import { computeEpochAtSlot, computeStartSlotAtEpoch } from "@lodestar/state-transition";
|
|
3
3
|
import { toRootHex } from "@lodestar/utils";
|
|
4
4
|
import { ForkChoiceError, ForkChoiceErrorCode } from "../forkChoice/errors.js";
|
|
5
5
|
import { LVHExecErrorCode, ProtoArrayError, ProtoArrayErrorCode } from "./errors.js";
|
|
6
|
-
import { ExecutionStatus, HEX_ZERO_HASH } from "./interface.js";
|
|
6
|
+
import { ExecutionStatus, HEX_ZERO_HASH, PayloadStatus, isGloasBlock, } from "./interface.js";
|
|
7
|
+
/**
|
|
8
|
+
* Threshold for payload timeliness (>50% of PTC must vote)
|
|
9
|
+
* Spec: gloas/fork-choice.md (PAYLOAD_TIMELY_THRESHOLD = PTC_SIZE // 2)
|
|
10
|
+
*/
|
|
11
|
+
const PAYLOAD_TIMELY_THRESHOLD = Math.floor(PTC_SIZE / 2);
|
|
7
12
|
export const DEFAULT_PRUNE_THRESHOLD = 0;
|
|
8
13
|
const ZERO_HASH_HEX = toRootHex(Buffer.alloc(32, 0));
|
|
9
14
|
export class ProtoArray {
|
|
@@ -15,9 +20,28 @@ export class ProtoArray {
|
|
|
15
20
|
finalizedEpoch;
|
|
16
21
|
finalizedRoot;
|
|
17
22
|
nodes = [];
|
|
23
|
+
/**
|
|
24
|
+
* Maps block root to array of node indices for each payload status variant
|
|
25
|
+
*
|
|
26
|
+
* Array structure: [PENDING, EMPTY, FULL] where indices correspond to PayloadStatus enum values
|
|
27
|
+
* - number[0] = PENDING variant index (PayloadStatus.PENDING = 0)
|
|
28
|
+
* - number[1] = EMPTY variant index (PayloadStatus.EMPTY = 1)
|
|
29
|
+
* - number[2] = FULL variant index (PayloadStatus.FULL = 2)
|
|
30
|
+
*
|
|
31
|
+
* Note: undefined array elements indicate that variant doesn't exist for this block
|
|
32
|
+
*/
|
|
18
33
|
indices = new Map();
|
|
19
34
|
lvhError;
|
|
20
35
|
previousProposerBoost = null;
|
|
36
|
+
/**
|
|
37
|
+
* PTC (Payload Timeliness Committee) votes per block
|
|
38
|
+
* Maps block root to boolean array of size PTC_SIZE (from params: 512 mainnet, 2 minimal)
|
|
39
|
+
* Spec: gloas/fork-choice.md#modified-store (line 148)
|
|
40
|
+
*
|
|
41
|
+
* ptcVotes[blockRoot][i] = true if PTC member i voted payload_present=true
|
|
42
|
+
* Used by is_payload_timely() to determine if payload is timely
|
|
43
|
+
*/
|
|
44
|
+
ptcVotes = new Map();
|
|
21
45
|
constructor({ pruneThreshold, justifiedEpoch, justifiedRoot, finalizedEpoch, finalizedRoot, }) {
|
|
22
46
|
this.pruneThreshold = pruneThreshold;
|
|
23
47
|
this.justifiedEpoch = justifiedEpoch;
|
|
@@ -37,9 +61,146 @@ export class ProtoArray {
|
|
|
37
61
|
...block,
|
|
38
62
|
// We are using the blockROot as the targetRoot, since it always lies on an epoch boundary
|
|
39
63
|
targetRoot: block.blockRoot,
|
|
40
|
-
}, currentSlot);
|
|
64
|
+
}, currentSlot, null);
|
|
41
65
|
return protoArray;
|
|
42
66
|
}
|
|
67
|
+
/**
|
|
68
|
+
* Get node index for a block root and payload status
|
|
69
|
+
*
|
|
70
|
+
* @param root - The block root to look up
|
|
71
|
+
* @param payloadStatus - The specific payload status variant (PENDING/EMPTY/FULL)
|
|
72
|
+
* @returns The node index for the specified variant, or undefined if not found
|
|
73
|
+
*
|
|
74
|
+
* Behavior:
|
|
75
|
+
* - Pre-Gloas blocks: only FULL is valid, PENDING/EMPTY throw error
|
|
76
|
+
* - Gloas blocks: returns the specified variant index, or undefined if that variant doesn't exist
|
|
77
|
+
*
|
|
78
|
+
* Note: payloadStatus is required. Use getDefaultVariant() to get the canonical variant.
|
|
79
|
+
*/
|
|
80
|
+
getNodeIndexByRootAndStatus(root, payloadStatus) {
|
|
81
|
+
const variantOrArr = this.indices.get(root);
|
|
82
|
+
if (variantOrArr == null) {
|
|
83
|
+
return undefined;
|
|
84
|
+
}
|
|
85
|
+
// Pre-Gloas: only FULL variant exists
|
|
86
|
+
if (!Array.isArray(variantOrArr)) {
|
|
87
|
+
// Return FULL variant if no status specified or FULL explicitly requested
|
|
88
|
+
if (payloadStatus === PayloadStatus.FULL) {
|
|
89
|
+
return variantOrArr;
|
|
90
|
+
}
|
|
91
|
+
// PENDING and EMPTY are invalid for pre-Gloas blocks
|
|
92
|
+
throw new ProtoArrayError({
|
|
93
|
+
code: ProtoArrayErrorCode.INVALID_NODE_INDEX,
|
|
94
|
+
index: payloadStatus,
|
|
95
|
+
});
|
|
96
|
+
}
|
|
97
|
+
// Gloas: return the specified variant, or PENDING if not specified
|
|
98
|
+
return variantOrArr[payloadStatus];
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Get the default/canonical payload status for a block root
|
|
102
|
+
* - Pre-Gloas blocks: Returns FULL (payload embedded in block)
|
|
103
|
+
* - Gloas blocks: Returns PENDING (canonical variant)
|
|
104
|
+
*
|
|
105
|
+
* @param blockRoot - The block root to check
|
|
106
|
+
* @returns PayloadStatus.FULL for pre-Gloas, PayloadStatus.PENDING for Gloas, undefined if block not found
|
|
107
|
+
*/
|
|
108
|
+
getDefaultVariant(blockRoot) {
|
|
109
|
+
const variantOrArr = this.indices.get(blockRoot);
|
|
110
|
+
if (variantOrArr == null) {
|
|
111
|
+
return undefined;
|
|
112
|
+
}
|
|
113
|
+
// Pre-Gloas: only FULL variant exists
|
|
114
|
+
if (!Array.isArray(variantOrArr)) {
|
|
115
|
+
return PayloadStatus.FULL;
|
|
116
|
+
}
|
|
117
|
+
// Gloas: multiple variants exist, PENDING is canonical
|
|
118
|
+
return PayloadStatus.PENDING;
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* Determine which parent payload status a block extends
|
|
122
|
+
* Spec: gloas/fork-choice.md#new-get_parent_payload_status
|
|
123
|
+
* def get_parent_payload_status(store: Store, block: BeaconBlock) -> PayloadStatus:
|
|
124
|
+
* parent = store.blocks[block.parent_root]
|
|
125
|
+
* parent_block_hash = block.body.signed_execution_payload_bid.message.parent_block_hash
|
|
126
|
+
* message_block_hash = parent.body.signed_execution_payload_bid.message.block_hash
|
|
127
|
+
* return PAYLOAD_STATUS_FULL if parent_block_hash == message_block_hash else PAYLOAD_STATUS_EMPTY
|
|
128
|
+
*
|
|
129
|
+
* In lodestar forkchoice, we don't store the full bid, so we compares parent_block_hash in child's bid with executionPayloadBlockHash in parent:
|
|
130
|
+
* - If it matches EMPTY variant, return EMPTY
|
|
131
|
+
* - If it matches FULL variant, return FULL
|
|
132
|
+
* - If no match, throw UNKNOWN_PARENT_BLOCK error
|
|
133
|
+
*
|
|
134
|
+
* For pre-Gloas blocks: always returns FULL
|
|
135
|
+
*/
|
|
136
|
+
getParentPayloadStatus(block) {
|
|
137
|
+
// Pre-Gloas blocks have payloads embedded, so parents are always FULL
|
|
138
|
+
const { parentBlockHash } = block;
|
|
139
|
+
if (parentBlockHash === null) {
|
|
140
|
+
return PayloadStatus.FULL;
|
|
141
|
+
}
|
|
142
|
+
const parentBlock = this.getBlockHexAndBlockHash(block.parentRoot, parentBlockHash);
|
|
143
|
+
if (parentBlock == null) {
|
|
144
|
+
throw new ProtoArrayError({
|
|
145
|
+
code: ProtoArrayErrorCode.UNKNOWN_PARENT_BLOCK,
|
|
146
|
+
parentRoot: block.parentRoot,
|
|
147
|
+
parentHash: parentBlockHash,
|
|
148
|
+
});
|
|
149
|
+
}
|
|
150
|
+
return parentBlock.payloadStatus;
|
|
151
|
+
}
|
|
152
|
+
/**
|
|
153
|
+
* Return the parent `ProtoBlock` given its root and block hash.
|
|
154
|
+
*/
|
|
155
|
+
getParent(parentRoot, parentBlockHash) {
|
|
156
|
+
// pre-gloas
|
|
157
|
+
if (parentBlockHash === null) {
|
|
158
|
+
const parentIndex = this.indices.get(parentRoot);
|
|
159
|
+
if (parentIndex === undefined) {
|
|
160
|
+
return null;
|
|
161
|
+
}
|
|
162
|
+
if (Array.isArray(parentIndex)) {
|
|
163
|
+
// Gloas block found when pre-gloas expected
|
|
164
|
+
throw new ProtoArrayError({
|
|
165
|
+
code: ProtoArrayErrorCode.UNKNOWN_PARENT_BLOCK,
|
|
166
|
+
parentRoot,
|
|
167
|
+
parentHash: parentBlockHash,
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
return this.nodes[parentIndex] ?? null;
|
|
171
|
+
}
|
|
172
|
+
// post-gloas
|
|
173
|
+
return this.getBlockHexAndBlockHash(parentRoot, parentBlockHash);
|
|
174
|
+
}
|
|
175
|
+
/**
|
|
176
|
+
* Returns an EMPTY or FULL `ProtoBlock` that has matching block root and block hash
|
|
177
|
+
*/
|
|
178
|
+
getBlockHexAndBlockHash(blockRoot, blockHash) {
|
|
179
|
+
const variantIndices = this.indices.get(blockRoot);
|
|
180
|
+
if (variantIndices === undefined) {
|
|
181
|
+
return null;
|
|
182
|
+
}
|
|
183
|
+
// Pre-Gloas
|
|
184
|
+
if (!Array.isArray(variantIndices)) {
|
|
185
|
+
const node = this.nodes[variantIndices];
|
|
186
|
+
return node.executionPayloadBlockHash === blockHash ? node : null;
|
|
187
|
+
}
|
|
188
|
+
// Post-Gloas, check empty and full variants
|
|
189
|
+
const fullNodeIndex = variantIndices[PayloadStatus.FULL];
|
|
190
|
+
if (fullNodeIndex !== undefined) {
|
|
191
|
+
const fullNode = this.nodes[fullNodeIndex];
|
|
192
|
+
if (fullNode && fullNode.executionPayloadBlockHash === blockHash) {
|
|
193
|
+
return fullNode;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
const emptyNode = this.nodes[variantIndices[PayloadStatus.EMPTY]];
|
|
197
|
+
if (emptyNode && emptyNode.executionPayloadBlockHash === blockHash) {
|
|
198
|
+
return emptyNode;
|
|
199
|
+
}
|
|
200
|
+
// PENDING is the same to EMPTY so not likely we can return it
|
|
201
|
+
// also it's only specific for fork-choice
|
|
202
|
+
return null;
|
|
203
|
+
}
|
|
43
204
|
/**
|
|
44
205
|
* Iterate backwards through the array, touching all nodes and their parents and potentially
|
|
45
206
|
* the best-child of each parent.
|
|
@@ -56,11 +217,11 @@ export class ProtoArray {
|
|
|
56
217
|
* - If required, update the parents best-descendant with the current node or its best-descendant.
|
|
57
218
|
*/
|
|
58
219
|
applyScoreChanges({ deltas, proposerBoost, justifiedEpoch, justifiedRoot, finalizedEpoch, finalizedRoot, currentSlot, }) {
|
|
59
|
-
if (deltas.length !== this.
|
|
220
|
+
if (deltas.length !== this.nodes.length) {
|
|
60
221
|
throw new ProtoArrayError({
|
|
61
222
|
code: ProtoArrayErrorCode.INVALID_DELTA_LEN,
|
|
62
223
|
deltas: deltas.length,
|
|
63
|
-
indices: this.
|
|
224
|
+
indices: this.nodes.length,
|
|
64
225
|
});
|
|
65
226
|
}
|
|
66
227
|
if (justifiedEpoch !== this.justifiedEpoch ||
|
|
@@ -129,7 +290,7 @@ export class ProtoArray {
|
|
|
129
290
|
// If the node has a parent, try to update its best-child and best-descendant.
|
|
130
291
|
const parentIndex = node.parent;
|
|
131
292
|
if (parentIndex !== undefined) {
|
|
132
|
-
this.maybeUpdateBestChildAndDescendant(parentIndex, nodeIndex, currentSlot);
|
|
293
|
+
this.maybeUpdateBestChildAndDescendant(parentIndex, nodeIndex, currentSlot, proposerBoost?.root ?? null);
|
|
133
294
|
}
|
|
134
295
|
}
|
|
135
296
|
// Update the previous proposer boost
|
|
@@ -140,9 +301,9 @@ export class ProtoArray {
|
|
|
140
301
|
*
|
|
141
302
|
* It is only sane to supply an undefined parent for the genesis block
|
|
142
303
|
*/
|
|
143
|
-
onBlock(block, currentSlot) {
|
|
304
|
+
onBlock(block, currentSlot, proposerBoostRoot) {
|
|
144
305
|
// If the block is already known, simply ignore it
|
|
145
|
-
if (this.
|
|
306
|
+
if (this.hasBlock(block.blockRoot)) {
|
|
146
307
|
return;
|
|
147
308
|
}
|
|
148
309
|
if (block.executionStatus === ExecutionStatus.Invalid) {
|
|
@@ -151,30 +312,258 @@ export class ProtoArray {
|
|
|
151
312
|
root: block.blockRoot,
|
|
152
313
|
});
|
|
153
314
|
}
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
parent
|
|
315
|
+
if (isGloasBlock(block)) {
|
|
316
|
+
// Gloas: Create PENDING + EMPTY nodes with correct parent relationships
|
|
317
|
+
// Parent of new PENDING node = parent block's EMPTY or FULL (inter-block edge)
|
|
318
|
+
// Parent of new EMPTY node = own PENDING node (intra-block edge)
|
|
319
|
+
// For fork transition: if parent is pre-Gloas, point to parent's FULL
|
|
320
|
+
// Otherwise, determine which parent payload status this block extends
|
|
321
|
+
let parentIndex;
|
|
322
|
+
// Check if parent exists by getting variants array
|
|
323
|
+
const parentVariants = this.indices.get(block.parentRoot);
|
|
324
|
+
if (parentVariants != null) {
|
|
325
|
+
const anyParentIndex = Array.isArray(parentVariants) ? parentVariants[0] : parentVariants;
|
|
326
|
+
const anyParentNode = this.nodes[anyParentIndex];
|
|
327
|
+
if (!isGloasBlock(anyParentNode)) {
|
|
328
|
+
// Fork transition: parent is pre-Gloas, so it only has FULL variant at variants[0]
|
|
329
|
+
parentIndex = anyParentIndex;
|
|
330
|
+
}
|
|
331
|
+
else {
|
|
332
|
+
// Both blocks are Gloas: determine which parent payload status to extend
|
|
333
|
+
const parentPayloadStatus = this.getParentPayloadStatus(block);
|
|
334
|
+
parentIndex = this.getNodeIndexByRootAndStatus(block.parentRoot, parentPayloadStatus);
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
// else: parent doesn't exist, parentIndex remains undefined (orphan block)
|
|
338
|
+
// Create PENDING node
|
|
339
|
+
const pendingNode = {
|
|
340
|
+
...block,
|
|
341
|
+
parent: parentIndex, // Points to parent's EMPTY/FULL or FULL (for transition)
|
|
342
|
+
payloadStatus: PayloadStatus.PENDING,
|
|
343
|
+
weight: 0,
|
|
344
|
+
bestChild: undefined,
|
|
345
|
+
bestDescendant: undefined,
|
|
346
|
+
};
|
|
347
|
+
const pendingIndex = this.nodes.length;
|
|
348
|
+
this.nodes.push(pendingNode);
|
|
349
|
+
// Create EMPTY variant as a child of PENDING
|
|
350
|
+
const emptyNode = {
|
|
351
|
+
...block,
|
|
352
|
+
parent: pendingIndex, // Points to own PENDING
|
|
353
|
+
payloadStatus: PayloadStatus.EMPTY,
|
|
354
|
+
weight: 0,
|
|
355
|
+
bestChild: undefined,
|
|
356
|
+
bestDescendant: undefined,
|
|
357
|
+
};
|
|
358
|
+
const emptyIndex = this.nodes.length;
|
|
359
|
+
this.nodes.push(emptyNode);
|
|
360
|
+
// Store both variants in the indices array
|
|
361
|
+
// [PENDING, EMPTY, undefined] - FULL will be added later if payload arrives
|
|
362
|
+
this.indices.set(block.blockRoot, [pendingIndex, emptyIndex]);
|
|
363
|
+
// Update bestChild pointers
|
|
364
|
+
if (parentIndex !== undefined) {
|
|
365
|
+
this.maybeUpdateBestChildAndDescendant(parentIndex, pendingIndex, currentSlot, proposerBoostRoot);
|
|
366
|
+
if (pendingNode.executionStatus === ExecutionStatus.Valid) {
|
|
367
|
+
this.propagateValidExecutionStatusByIndex(parentIndex);
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
// Update bestChild for PENDING → EMPTY edge
|
|
371
|
+
this.maybeUpdateBestChildAndDescendant(pendingIndex, emptyIndex, currentSlot, proposerBoostRoot);
|
|
372
|
+
// Initialize PTC votes for this block (all false initially)
|
|
373
|
+
// Spec: gloas/fork-choice.md#modified-on_block (line 645)
|
|
374
|
+
this.ptcVotes.set(block.blockRoot, new Array(PTC_SIZE).fill(false));
|
|
375
|
+
}
|
|
376
|
+
else {
|
|
377
|
+
// Pre-Gloas: Only create FULL node (payload embedded in block)
|
|
378
|
+
const node = {
|
|
379
|
+
...block,
|
|
380
|
+
parent: this.getNodeIndexByRootAndStatus(block.parentRoot, PayloadStatus.FULL),
|
|
381
|
+
payloadStatus: PayloadStatus.FULL,
|
|
382
|
+
weight: 0,
|
|
383
|
+
bestChild: undefined,
|
|
384
|
+
bestDescendant: undefined,
|
|
385
|
+
};
|
|
386
|
+
const nodeIndex = this.nodes.length;
|
|
387
|
+
this.nodes.push(node);
|
|
388
|
+
// Pre-Gloas: store FULL index instead of array
|
|
389
|
+
this.indices.set(block.blockRoot, nodeIndex);
|
|
390
|
+
// If this node is valid, lets propagate the valid status up the chain
|
|
391
|
+
// and throw error if we counter invalid, as this breaks consensus
|
|
392
|
+
if (node.parent !== undefined) {
|
|
393
|
+
this.maybeUpdateBestChildAndDescendant(node.parent, nodeIndex, currentSlot, proposerBoostRoot);
|
|
394
|
+
if (node.executionStatus === ExecutionStatus.Valid) {
|
|
395
|
+
this.propagateValidExecutionStatusByIndex(node.parent);
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
/**
|
|
401
|
+
* Called when an execution payload is received for a block (Gloas only)
|
|
402
|
+
* Creates a FULL variant node as a sibling to the existing EMPTY variant
|
|
403
|
+
* Both EMPTY and FULL have parent = own PENDING node
|
|
404
|
+
*
|
|
405
|
+
* Spec: gloas/fork-choice.md (on_execution_payload event)
|
|
406
|
+
*/
|
|
407
|
+
onExecutionPayload(blockRoot, currentSlot, executionPayloadBlockHash, executionPayloadNumber, executionPayloadStateRoot, proposerBoostRoot) {
|
|
408
|
+
// First check if block exists
|
|
409
|
+
const variants = this.indices.get(blockRoot);
|
|
410
|
+
if (variants == null) {
|
|
411
|
+
// Equivalent to `assert envelope.beacon_block_root in store.block_states`
|
|
412
|
+
throw new ProtoArrayError({
|
|
413
|
+
code: ProtoArrayErrorCode.UNKNOWN_BLOCK,
|
|
414
|
+
root: blockRoot,
|
|
415
|
+
});
|
|
416
|
+
}
|
|
417
|
+
if (!Array.isArray(variants)) {
|
|
418
|
+
// Pre-gloas block should not be calling this method
|
|
419
|
+
throw new ProtoArrayError({
|
|
420
|
+
code: ProtoArrayErrorCode.PRE_GLOAS_BLOCK,
|
|
421
|
+
root: blockRoot,
|
|
422
|
+
});
|
|
423
|
+
}
|
|
424
|
+
// Check if FULL already exists for Gloas blocks
|
|
425
|
+
if (variants[PayloadStatus.FULL] !== undefined) {
|
|
426
|
+
return;
|
|
427
|
+
}
|
|
428
|
+
// Get PENDING node for Gloas blocks
|
|
429
|
+
const pendingIndex = variants[PayloadStatus.PENDING];
|
|
430
|
+
if (pendingIndex === undefined) {
|
|
431
|
+
throw new ProtoArrayError({
|
|
432
|
+
code: ProtoArrayErrorCode.UNKNOWN_BLOCK,
|
|
433
|
+
root: blockRoot,
|
|
434
|
+
});
|
|
435
|
+
}
|
|
436
|
+
const pendingNode = this.nodes[pendingIndex];
|
|
437
|
+
if (!pendingNode) {
|
|
438
|
+
throw new ProtoArrayError({
|
|
439
|
+
code: ProtoArrayErrorCode.INVALID_NODE_INDEX,
|
|
440
|
+
index: pendingIndex,
|
|
441
|
+
});
|
|
442
|
+
}
|
|
443
|
+
// Create FULL variant as a child of PENDING (sibling to EMPTY)
|
|
444
|
+
const fullNode = {
|
|
445
|
+
...pendingNode,
|
|
446
|
+
parent: pendingIndex, // Points to own PENDING (same as EMPTY)
|
|
447
|
+
payloadStatus: PayloadStatus.FULL,
|
|
157
448
|
weight: 0,
|
|
158
449
|
bestChild: undefined,
|
|
159
450
|
bestDescendant: undefined,
|
|
451
|
+
executionStatus: ExecutionStatus.Valid,
|
|
452
|
+
executionPayloadBlockHash,
|
|
453
|
+
executionPayloadNumber,
|
|
454
|
+
stateRoot: executionPayloadStateRoot,
|
|
160
455
|
};
|
|
161
|
-
const
|
|
162
|
-
this.
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
//
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
456
|
+
const fullIndex = this.nodes.length;
|
|
457
|
+
this.nodes.push(fullNode);
|
|
458
|
+
// Add FULL variant to the indices array
|
|
459
|
+
variants[PayloadStatus.FULL] = fullIndex;
|
|
460
|
+
// Update bestChild for PENDING node (may now prefer FULL over EMPTY)
|
|
461
|
+
this.maybeUpdateBestChildAndDescendant(pendingIndex, fullIndex, currentSlot, proposerBoostRoot);
|
|
462
|
+
}
|
|
463
|
+
/**
|
|
464
|
+
* Update PTC votes for multiple validators attesting to a block
|
|
465
|
+
* Spec: gloas/fork-choice.md#new-on_payload_attestation_message
|
|
466
|
+
*
|
|
467
|
+
* @param blockRoot - The beacon block root being attested
|
|
468
|
+
* @param ptcIndices - Array of PTC committee indices that voted (0..PTC_SIZE-1)
|
|
469
|
+
* @param payloadPresent - Whether the validators attest the payload is present
|
|
470
|
+
*/
|
|
471
|
+
notifyPtcMessages(blockRoot, ptcIndices, payloadPresent) {
|
|
472
|
+
const votes = this.ptcVotes.get(blockRoot);
|
|
473
|
+
if (votes === undefined) {
|
|
474
|
+
// Block not found or not a Gloas block, ignore
|
|
475
|
+
return;
|
|
476
|
+
}
|
|
477
|
+
for (const ptcIndex of ptcIndices) {
|
|
478
|
+
if (ptcIndex < 0 || ptcIndex >= PTC_SIZE) {
|
|
479
|
+
throw new Error(`Invalid PTC index: ${ptcIndex}, must be 0..${PTC_SIZE - 1}`);
|
|
170
480
|
}
|
|
481
|
+
// Update the vote
|
|
482
|
+
votes[ptcIndex] = payloadPresent;
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
/**
|
|
486
|
+
* Check if execution payload for a block is timely
|
|
487
|
+
* Spec: gloas/fork-choice.md#new-is_payload_timely
|
|
488
|
+
*
|
|
489
|
+
* Returns true if:
|
|
490
|
+
* 1. Block has PTC votes tracked
|
|
491
|
+
* 2. Payload is locally available (FULL variant exists in proto array)
|
|
492
|
+
* 3. More than PAYLOAD_TIMELY_THRESHOLD (>50% of PTC) members voted payload_present=true
|
|
493
|
+
*
|
|
494
|
+
* @param blockRoot - The beacon block root to check
|
|
495
|
+
*/
|
|
496
|
+
isPayloadTimely(blockRoot) {
|
|
497
|
+
const votes = this.ptcVotes.get(blockRoot);
|
|
498
|
+
if (votes === undefined) {
|
|
499
|
+
// Block not found or not a Gloas block
|
|
500
|
+
return false;
|
|
501
|
+
}
|
|
502
|
+
// If payload is not locally available, it's not timely
|
|
503
|
+
// In our implementation, payload is locally available if proto array has FULL variant of the block
|
|
504
|
+
const fullNodeIndex = this.getNodeIndexByRootAndStatus(blockRoot, PayloadStatus.FULL);
|
|
505
|
+
if (fullNodeIndex === undefined) {
|
|
506
|
+
return false;
|
|
507
|
+
}
|
|
508
|
+
// Count votes for payload_present=true
|
|
509
|
+
const yesVotes = votes.filter((v) => v).length;
|
|
510
|
+
return yesVotes > PAYLOAD_TIMELY_THRESHOLD;
|
|
511
|
+
}
|
|
512
|
+
/**
|
|
513
|
+
* Check if parent node is FULL
|
|
514
|
+
* Spec: gloas/fork-choice.md#new-is_parent_node_full
|
|
515
|
+
*
|
|
516
|
+
* Returns true if the parent payload status (determined by block.parentBlockHash) is FULL
|
|
517
|
+
*/
|
|
518
|
+
isParentNodeFull(block) {
|
|
519
|
+
return this.getParentPayloadStatus(block) === PayloadStatus.FULL;
|
|
520
|
+
}
|
|
521
|
+
/**
|
|
522
|
+
* Determine if we should extend the payload (prefer FULL over EMPTY)
|
|
523
|
+
* Spec: gloas/fork-choice.md#new-should_extend_payload
|
|
524
|
+
*
|
|
525
|
+
* Returns true if:
|
|
526
|
+
* 1. Payload is timely, OR
|
|
527
|
+
* 2. No proposer boost root (empty/zero hash), OR
|
|
528
|
+
* 3. Proposer boost root's parent is not this block, OR
|
|
529
|
+
* 4. Proposer boost root extends FULL parent
|
|
530
|
+
*
|
|
531
|
+
* @param blockRoot - The block root to check
|
|
532
|
+
* @param proposerBoostRoot - Current proposer boost root (from ForkChoice)
|
|
533
|
+
*/
|
|
534
|
+
shouldExtendPayload(blockRoot, proposerBoostRoot) {
|
|
535
|
+
// Condition 1: Payload is timely
|
|
536
|
+
if (this.isPayloadTimely(blockRoot)) {
|
|
537
|
+
return true;
|
|
538
|
+
}
|
|
539
|
+
// Condition 2: No proposer boost root
|
|
540
|
+
if (proposerBoostRoot === null || proposerBoostRoot === HEX_ZERO_HASH) {
|
|
541
|
+
return true;
|
|
542
|
+
}
|
|
543
|
+
// Get proposer boost block
|
|
544
|
+
// We don't care about variant here, just need proposer boost block info
|
|
545
|
+
const defaultStatus = this.getDefaultVariant(proposerBoostRoot);
|
|
546
|
+
const proposerBoostBlock = defaultStatus !== undefined ? this.getNode(proposerBoostRoot, defaultStatus) : undefined;
|
|
547
|
+
if (!proposerBoostBlock) {
|
|
548
|
+
// Proposer boost block not found, default to extending payload
|
|
549
|
+
return true;
|
|
550
|
+
}
|
|
551
|
+
// Condition 3: Proposer boost root's parent is not this block
|
|
552
|
+
if (proposerBoostBlock.parentRoot !== blockRoot) {
|
|
553
|
+
return true;
|
|
554
|
+
}
|
|
555
|
+
// Condition 4: Proposer boost root extends FULL parent
|
|
556
|
+
if (this.isParentNodeFull(proposerBoostBlock)) {
|
|
557
|
+
return true;
|
|
171
558
|
}
|
|
559
|
+
return false;
|
|
172
560
|
}
|
|
173
561
|
/**
|
|
174
562
|
* Optimistic sync validate till validated latest hash, invalidate any descendant branch
|
|
175
563
|
* if invalidate till hash provided. If consensus fails, this will invalidate entire
|
|
176
564
|
* forkChoice which will throw on any call to findHead
|
|
177
565
|
*/
|
|
566
|
+
// TODO GLOAS: Review usage of this post-gloas
|
|
178
567
|
validateLatestHash(execResponse, currentSlot) {
|
|
179
568
|
// Look reverse because its highly likely node with latestValidExecHash is towards the
|
|
180
569
|
// the leaves of the forkchoice
|
|
@@ -216,7 +605,11 @@ export class ProtoArray {
|
|
|
216
605
|
// if its in fcU.
|
|
217
606
|
//
|
|
218
607
|
const { invalidateFromParentBlockRoot, latestValidExecHash } = execResponse;
|
|
219
|
-
|
|
608
|
+
// TODO GLOAS: verify if getting default variant is correct here
|
|
609
|
+
const defaultStatus = this.getDefaultVariant(invalidateFromParentBlockRoot);
|
|
610
|
+
const invalidateFromParentIndex = defaultStatus !== undefined
|
|
611
|
+
? this.getNodeIndexByRootAndStatus(invalidateFromParentBlockRoot, defaultStatus)
|
|
612
|
+
: undefined;
|
|
220
613
|
if (invalidateFromParentIndex === undefined) {
|
|
221
614
|
throw Error(`Unable to find invalidateFromParentBlockRoot=${invalidateFromParentBlockRoot} in forkChoice`);
|
|
222
615
|
}
|
|
@@ -356,8 +749,41 @@ export class ProtoArray {
|
|
|
356
749
|
}
|
|
357
750
|
return validNode;
|
|
358
751
|
}
|
|
752
|
+
/**
|
|
753
|
+
* Get payload status tiebreaker for fork choice comparison
|
|
754
|
+
* Spec: gloas/fork-choice.md#new-get_payload_status_tiebreaker
|
|
755
|
+
*
|
|
756
|
+
* For PENDING nodes: always returns 0
|
|
757
|
+
* For EMPTY/FULL variants from slot n-1: implements tiebreaker logic based on should_extend_payload
|
|
758
|
+
* For older blocks: returns node.payloadStatus
|
|
759
|
+
*
|
|
760
|
+
* Note: pre-gloas logic won't reach here. Pre-Gloas blocks have different roots, so they are always resolved by the weight and root tiebreaker before reaching here.
|
|
761
|
+
*/
|
|
762
|
+
getPayloadStatusTiebreaker(node, currentSlot, proposerBoostRoot) {
|
|
763
|
+
// PENDING nodes always return PENDING (no tiebreaker needed)
|
|
764
|
+
// PENDING=0, EMPTY=1, FULL=2
|
|
765
|
+
if (node.payloadStatus === PayloadStatus.PENDING) {
|
|
766
|
+
return node.payloadStatus;
|
|
767
|
+
}
|
|
768
|
+
// For Gloas: check if from previous slot
|
|
769
|
+
if (node.slot + 1 !== currentSlot) {
|
|
770
|
+
return node.payloadStatus;
|
|
771
|
+
}
|
|
772
|
+
// For previous slot blocks in Gloas, decide between FULL and EMPTY
|
|
773
|
+
// based on should_extend_payload
|
|
774
|
+
if (node.payloadStatus === PayloadStatus.EMPTY) {
|
|
775
|
+
return PayloadStatus.EMPTY;
|
|
776
|
+
}
|
|
777
|
+
// FULL - check should_extend_payload
|
|
778
|
+
const shouldExtend = this.shouldExtendPayload(node.blockRoot, proposerBoostRoot);
|
|
779
|
+
return shouldExtend ? PayloadStatus.FULL : PayloadStatus.PENDING;
|
|
780
|
+
}
|
|
359
781
|
/**
|
|
360
782
|
* Follows the best-descendant links to find the best-block (i.e., head-block).
|
|
783
|
+
*
|
|
784
|
+
* Returns the ProtoNode representing the head.
|
|
785
|
+
* For pre-Gloas forks, only FULL variants exist (payload embedded).
|
|
786
|
+
* For Gloas, may return PENDING/EMPTY/FULL variants.
|
|
361
787
|
*/
|
|
362
788
|
findHead(justifiedRoot, currentSlot) {
|
|
363
789
|
if (this.lvhError) {
|
|
@@ -366,7 +792,9 @@ export class ProtoArray {
|
|
|
366
792
|
...this.lvhError,
|
|
367
793
|
});
|
|
368
794
|
}
|
|
369
|
-
|
|
795
|
+
// Get canonical node: FULL for pre-Gloas, PENDING for Gloas
|
|
796
|
+
const defaultStatus = this.getDefaultVariant(justifiedRoot);
|
|
797
|
+
const justifiedIndex = defaultStatus !== undefined ? this.getNodeIndexByRootAndStatus(justifiedRoot, defaultStatus) : undefined;
|
|
370
798
|
if (justifiedIndex === undefined) {
|
|
371
799
|
throw new ProtoArrayError({
|
|
372
800
|
code: ProtoArrayErrorCode.JUSTIFIED_NODE_UNKNOWN,
|
|
@@ -412,7 +840,7 @@ export class ProtoArray {
|
|
|
412
840
|
headFinalizedEpoch: justifiedNode.finalizedEpoch,
|
|
413
841
|
});
|
|
414
842
|
}
|
|
415
|
-
return bestNode
|
|
843
|
+
return bestNode;
|
|
416
844
|
}
|
|
417
845
|
/**
|
|
418
846
|
* Update the tree with new finalization information. The tree is only actually pruned if both
|
|
@@ -430,38 +858,68 @@ export class ProtoArray {
|
|
|
430
858
|
* - There is some internal error relating to invalid indices inside `this`.
|
|
431
859
|
*/
|
|
432
860
|
maybePrune(finalizedRoot) {
|
|
433
|
-
const
|
|
434
|
-
if (
|
|
861
|
+
const variants = this.indices.get(finalizedRoot);
|
|
862
|
+
if (variants == null) {
|
|
435
863
|
throw new ProtoArrayError({
|
|
436
864
|
code: ProtoArrayErrorCode.FINALIZED_NODE_UNKNOWN,
|
|
437
865
|
root: finalizedRoot,
|
|
438
866
|
});
|
|
439
867
|
}
|
|
868
|
+
// Find the minimum index among all variants to ensure we don't prune too much
|
|
869
|
+
const finalizedIndex = Array.isArray(variants)
|
|
870
|
+
? Math.min(...variants.filter((idx) => idx !== undefined))
|
|
871
|
+
: variants;
|
|
440
872
|
if (finalizedIndex < this.pruneThreshold) {
|
|
441
873
|
// Pruning at small numbers incurs more cost than benefit
|
|
442
874
|
return [];
|
|
443
875
|
}
|
|
444
|
-
//
|
|
445
|
-
|
|
446
|
-
|
|
876
|
+
// Collect all block roots that will be pruned
|
|
877
|
+
const prunedRoots = new Set();
|
|
878
|
+
for (let i = 0; i < finalizedIndex; i++) {
|
|
879
|
+
const node = this.nodes[i];
|
|
447
880
|
if (node === undefined) {
|
|
448
|
-
throw new ProtoArrayError({ code: ProtoArrayErrorCode.INVALID_NODE_INDEX, index:
|
|
881
|
+
throw new ProtoArrayError({ code: ProtoArrayErrorCode.INVALID_NODE_INDEX, index: i });
|
|
449
882
|
}
|
|
450
|
-
|
|
883
|
+
prunedRoots.add(node.blockRoot);
|
|
884
|
+
}
|
|
885
|
+
// Remove indices for pruned blocks and PTC votes
|
|
886
|
+
for (const root of prunedRoots) {
|
|
887
|
+
this.indices.delete(root);
|
|
888
|
+
// Prune PTC votes for this block to prevent memory leak
|
|
889
|
+
// Spec: gloas/fork-choice.md (implicit - finalized blocks don't need PTC votes)
|
|
890
|
+
this.ptcVotes.delete(root);
|
|
451
891
|
}
|
|
452
892
|
// Store nodes prior to finalization
|
|
453
893
|
const removed = this.nodes.slice(0, finalizedIndex);
|
|
454
894
|
// Drop all the nodes prior to finalization
|
|
455
895
|
this.nodes = this.nodes.slice(finalizedIndex);
|
|
456
|
-
// Adjust the indices map
|
|
457
|
-
for (const [
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
896
|
+
// Adjust the indices map - subtract finalizedIndex from all node indices
|
|
897
|
+
for (const [root, variantIndices] of this.indices.entries()) {
|
|
898
|
+
// Pre-Gloas: single index
|
|
899
|
+
if (!Array.isArray(variantIndices)) {
|
|
900
|
+
if (variantIndices < finalizedIndex) {
|
|
901
|
+
throw new ProtoArrayError({
|
|
902
|
+
code: ProtoArrayErrorCode.INDEX_OVERFLOW,
|
|
903
|
+
value: "indices",
|
|
904
|
+
});
|
|
905
|
+
}
|
|
906
|
+
this.indices.set(root, variantIndices - finalizedIndex);
|
|
907
|
+
continue;
|
|
463
908
|
}
|
|
464
|
-
|
|
909
|
+
// Post-Gloas: array of variant indices
|
|
910
|
+
const adjustedVariants = variantIndices.map((variantIndex) => {
|
|
911
|
+
if (variantIndex === undefined) {
|
|
912
|
+
return undefined;
|
|
913
|
+
}
|
|
914
|
+
if (variantIndex < finalizedIndex) {
|
|
915
|
+
throw new ProtoArrayError({
|
|
916
|
+
code: ProtoArrayErrorCode.INDEX_OVERFLOW,
|
|
917
|
+
value: "indices",
|
|
918
|
+
});
|
|
919
|
+
}
|
|
920
|
+
return variantIndex - finalizedIndex;
|
|
921
|
+
});
|
|
922
|
+
this.indices.set(root, adjustedVariants);
|
|
465
923
|
}
|
|
466
924
|
// Iterate through all the existing nodes and adjust their indices to match the new layout of this.nodes
|
|
467
925
|
for (let i = 0, len = this.nodes.length; i < len; i++) {
|
|
@@ -508,7 +966,7 @@ export class ProtoArray {
|
|
|
508
966
|
* - The child is not the best child but becomes the best child.
|
|
509
967
|
* - The child is not the best child and does not become the best child.
|
|
510
968
|
*/
|
|
511
|
-
maybeUpdateBestChildAndDescendant(parentIndex, childIndex, currentSlot) {
|
|
969
|
+
maybeUpdateBestChildAndDescendant(parentIndex, childIndex, currentSlot, proposerBoostRoot) {
|
|
512
970
|
const childNode = this.nodes[childIndex];
|
|
513
971
|
if (childNode === undefined) {
|
|
514
972
|
throw new ProtoArrayError({
|
|
@@ -529,61 +987,87 @@ export class ProtoArray {
|
|
|
529
987
|
const noChange = [parentNode.bestChild, parentNode.bestDescendant];
|
|
530
988
|
let newChildAndDescendant;
|
|
531
989
|
const bestChildIndex = parentNode.bestChild;
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
// the child is the best-child already
|
|
540
|
-
// set it again to ensure that the best-descendent of the parent is updated
|
|
541
|
-
newChildAndDescendant = changeToChild;
|
|
542
|
-
}
|
|
543
|
-
else {
|
|
544
|
-
const bestChildNode = this.nodes[bestChildIndex];
|
|
545
|
-
if (bestChildNode === undefined) {
|
|
546
|
-
throw new ProtoArrayError({
|
|
547
|
-
code: ProtoArrayErrorCode.INVALID_BEST_CHILD_INDEX,
|
|
548
|
-
index: bestChildIndex,
|
|
549
|
-
});
|
|
990
|
+
// biome-ignore lint/suspicious/noConfusingLabels: labeled block used for early exit from complex decision tree
|
|
991
|
+
outer: {
|
|
992
|
+
if (bestChildIndex !== undefined) {
|
|
993
|
+
if (bestChildIndex === childIndex && !childLeadsToViableHead) {
|
|
994
|
+
// the child is already the best-child of the parent but its not viable for the head
|
|
995
|
+
// so remove it
|
|
996
|
+
newChildAndDescendant = changeToNull;
|
|
550
997
|
}
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
//
|
|
998
|
+
else if (bestChildIndex === childIndex) {
|
|
999
|
+
// the child is the best-child already
|
|
1000
|
+
// set it again to ensure that the best-descendent of the parent is updated
|
|
554
1001
|
newChildAndDescendant = changeToChild;
|
|
555
1002
|
}
|
|
556
|
-
else
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
1003
|
+
else {
|
|
1004
|
+
const bestChildNode = this.nodes[bestChildIndex];
|
|
1005
|
+
if (bestChildNode === undefined) {
|
|
1006
|
+
throw new ProtoArrayError({
|
|
1007
|
+
code: ProtoArrayErrorCode.INVALID_BEST_CHILD_INDEX,
|
|
1008
|
+
index: bestChildIndex,
|
|
1009
|
+
});
|
|
1010
|
+
}
|
|
1011
|
+
const bestChildLeadsToViableHead = this.nodeLeadsToViableHead(bestChildNode, currentSlot);
|
|
1012
|
+
if (childLeadsToViableHead && !bestChildLeadsToViableHead) {
|
|
1013
|
+
// the child leads to a viable head, but the current best-child doesn't
|
|
563
1014
|
newChildAndDescendant = changeToChild;
|
|
1015
|
+
break outer;
|
|
564
1016
|
}
|
|
565
|
-
|
|
1017
|
+
if (!childLeadsToViableHead && bestChildLeadsToViableHead) {
|
|
1018
|
+
// the best child leads to a viable head but the child doesn't
|
|
566
1019
|
newChildAndDescendant = noChange;
|
|
1020
|
+
break outer;
|
|
567
1021
|
}
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
//
|
|
571
|
-
|
|
1022
|
+
// Both nodes lead to viable heads (or both don't), need to pick winner
|
|
1023
|
+
// Pre-fulu we pick whichever has higher weight, tie-breaker by root
|
|
1024
|
+
// Post-fulu we pick whichever has higher weight, then tie-breaker by root, then tie-breaker by `getPayloadStatusTiebreaker`
|
|
1025
|
+
// Gloas: nodes from previous slot (n-1) with EMPTY/FULL variant have weight hardcoded to 0.
|
|
1026
|
+
// https://github.com/ethereum/consensus-specs/blob/69a2582d5d62c914b24894bdb65f4bd5d4e49ae4/specs/gloas/fork-choice.md?plain=1#L442
|
|
1027
|
+
const childEffectiveWeight = !isGloasBlock(childNode) ||
|
|
1028
|
+
childNode.payloadStatus === PayloadStatus.PENDING ||
|
|
1029
|
+
childNode.slot + 1 !== currentSlot
|
|
1030
|
+
? childNode.weight
|
|
1031
|
+
: 0;
|
|
1032
|
+
const bestChildEffectiveWeight = !isGloasBlock(bestChildNode) ||
|
|
1033
|
+
bestChildNode.payloadStatus === PayloadStatus.PENDING ||
|
|
1034
|
+
bestChildNode.slot + 1 !== currentSlot
|
|
1035
|
+
? bestChildNode.weight
|
|
1036
|
+
: 0;
|
|
1037
|
+
if (childEffectiveWeight !== bestChildEffectiveWeight) {
|
|
1038
|
+
// Different effective weights, choose the winner by weight
|
|
1039
|
+
newChildAndDescendant = childEffectiveWeight >= bestChildEffectiveWeight ? changeToChild : noChange;
|
|
1040
|
+
break outer;
|
|
1041
|
+
}
|
|
1042
|
+
if (childNode.blockRoot !== bestChildNode.blockRoot) {
|
|
1043
|
+
// Different blocks, tie-breaker by root
|
|
1044
|
+
newChildAndDescendant = childNode.blockRoot >= bestChildNode.blockRoot ? changeToChild : noChange;
|
|
1045
|
+
break outer;
|
|
1046
|
+
}
|
|
1047
|
+
// Same effective weight and same root — Gloas EMPTY vs FULL from n-1, tie-breaker by payload status
|
|
1048
|
+
// Note: pre-Gloas, each child node of a block has a unique root, so this point should not be reached
|
|
1049
|
+
const childTiebreaker = this.getPayloadStatusTiebreaker(childNode, currentSlot, proposerBoostRoot);
|
|
1050
|
+
const bestChildTiebreaker = this.getPayloadStatusTiebreaker(bestChildNode, currentSlot, proposerBoostRoot);
|
|
1051
|
+
if (childTiebreaker > bestChildTiebreaker) {
|
|
572
1052
|
newChildAndDescendant = changeToChild;
|
|
573
1053
|
}
|
|
1054
|
+
else if (childTiebreaker < bestChildTiebreaker) {
|
|
1055
|
+
newChildAndDescendant = noChange;
|
|
1056
|
+
}
|
|
574
1057
|
else {
|
|
1058
|
+
// Equal in all aspects, noChange
|
|
575
1059
|
newChildAndDescendant = noChange;
|
|
576
1060
|
}
|
|
577
1061
|
}
|
|
578
1062
|
}
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
1063
|
+
else if (childLeadsToViableHead) {
|
|
1064
|
+
// There is no current best-child and the child is viable.
|
|
1065
|
+
newChildAndDescendant = changeToChild;
|
|
1066
|
+
}
|
|
1067
|
+
else {
|
|
1068
|
+
// There is no current best-child but the child is not viable.
|
|
1069
|
+
newChildAndDescendant = noChange;
|
|
1070
|
+
}
|
|
587
1071
|
}
|
|
588
1072
|
parentNode.bestChild = newChildAndDescendant[0];
|
|
589
1073
|
parentNode.bestDescendant = newChildAndDescendant[1];
|
|
@@ -652,7 +1136,8 @@ export class ProtoArray {
|
|
|
652
1136
|
return true;
|
|
653
1137
|
}
|
|
654
1138
|
const finalizedSlot = computeStartSlotAtEpoch(this.finalizedEpoch);
|
|
655
|
-
|
|
1139
|
+
const ancestorNode = this.getAncestorOrNull(node.blockRoot, finalizedSlot);
|
|
1140
|
+
return this.finalizedEpoch === 0 || (ancestorNode !== null && this.finalizedRoot === ancestorNode.blockRoot);
|
|
656
1141
|
}
|
|
657
1142
|
/**
|
|
658
1143
|
* Same to getAncestor but it may return null instead of throwing error
|
|
@@ -666,47 +1151,103 @@ export class ProtoArray {
|
|
|
666
1151
|
}
|
|
667
1152
|
}
|
|
668
1153
|
/**
|
|
669
|
-
* Returns the
|
|
1154
|
+
* Returns the node identifier of an ancestor of `blockRoot` at the given `slot`.
|
|
670
1155
|
* (Note: `slot` refers to the block that is *returned*, not the one that is supplied.)
|
|
671
1156
|
*
|
|
672
1157
|
* NOTE: May be expensive: potentially walks through the entire fork of head to finalized block
|
|
673
1158
|
*
|
|
674
1159
|
* ### Specification
|
|
675
1160
|
*
|
|
676
|
-
*
|
|
1161
|
+
* Modified for Gloas to return node identifier instead of just root:
|
|
1162
|
+
* https://github.com/ethereum/consensus-specs/blob/v1.7.0-alpha.1/specs/gloas/fork-choice.md#modified-get_ancestor
|
|
677
1163
|
*
|
|
678
|
-
*
|
|
1164
|
+
* Pre-Gloas: Returns (root, PAYLOAD_STATUS_FULL)
|
|
1165
|
+
* Gloas: Returns (root, payloadStatus) based on actual node state
|
|
679
1166
|
*/
|
|
680
1167
|
getAncestor(blockRoot, ancestorSlot) {
|
|
681
|
-
|
|
682
|
-
|
|
1168
|
+
// Get any variant to check the block (use variants[0])
|
|
1169
|
+
const variantOrArr = this.indices.get(blockRoot);
|
|
1170
|
+
if (variantOrArr == null) {
|
|
683
1171
|
throw new ForkChoiceError({
|
|
684
1172
|
code: ForkChoiceErrorCode.MISSING_PROTO_ARRAY_BLOCK,
|
|
685
1173
|
root: blockRoot,
|
|
686
1174
|
});
|
|
687
1175
|
}
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
1176
|
+
const blockIndex = Array.isArray(variantOrArr) ? variantOrArr[0] : variantOrArr;
|
|
1177
|
+
const block = this.nodes[blockIndex];
|
|
1178
|
+
// If block is at or before queried slot, return PENDING variant (or FULL for pre-Gloas)
|
|
1179
|
+
if (block.slot <= ancestorSlot) {
|
|
1180
|
+
// For pre-Gloas: only FULL exists at variants[0]
|
|
1181
|
+
// For Gloas: PENDING is at variants[0]
|
|
1182
|
+
return block;
|
|
1183
|
+
}
|
|
1184
|
+
// Walk backwards through beacon blocks to find ancestor
|
|
1185
|
+
// Start with the parent of the current block
|
|
1186
|
+
let currentBlock = block;
|
|
1187
|
+
const parentVariants = this.indices.get(currentBlock.parentRoot);
|
|
1188
|
+
if (parentVariants == null) {
|
|
1189
|
+
throw new ForkChoiceError({
|
|
1190
|
+
code: ForkChoiceErrorCode.UNKNOWN_ANCESTOR,
|
|
1191
|
+
descendantRoot: blockRoot,
|
|
1192
|
+
ancestorSlot,
|
|
1193
|
+
});
|
|
1194
|
+
}
|
|
1195
|
+
let parentIndex = Array.isArray(parentVariants) ? parentVariants[0] : parentVariants;
|
|
1196
|
+
let parentBlock = this.nodes[parentIndex];
|
|
1197
|
+
// Walk backwards while parent.slot > ancestorSlot
|
|
1198
|
+
while (parentBlock.slot > ancestorSlot) {
|
|
1199
|
+
currentBlock = parentBlock;
|
|
1200
|
+
const nextParentVariants = this.indices.get(currentBlock.parentRoot);
|
|
1201
|
+
if (nextParentVariants == null) {
|
|
1202
|
+
throw new ForkChoiceError({
|
|
1203
|
+
code: ForkChoiceErrorCode.UNKNOWN_ANCESTOR,
|
|
1204
|
+
descendantRoot: blockRoot,
|
|
1205
|
+
ancestorSlot,
|
|
1206
|
+
});
|
|
695
1207
|
}
|
|
1208
|
+
parentIndex = Array.isArray(nextParentVariants) ? nextParentVariants[0] : nextParentVariants;
|
|
1209
|
+
parentBlock = this.nodes[parentIndex];
|
|
1210
|
+
}
|
|
1211
|
+
// Now parentBlock.slot <= ancestorSlot
|
|
1212
|
+
// Return the parent with the correct payload status based on currentBlock
|
|
1213
|
+
if (!isGloasBlock(currentBlock)) {
|
|
1214
|
+
// Pre-Gloas: return FULL variant (only one that exists)
|
|
1215
|
+
return parentBlock;
|
|
1216
|
+
}
|
|
1217
|
+
// Gloas: determine which parent variant (EMPTY or FULL) based on parent_block_hash
|
|
1218
|
+
const parentPayloadStatus = this.getParentPayloadStatus(currentBlock);
|
|
1219
|
+
const parentVariantIndex = this.getNodeIndexByRootAndStatus(currentBlock.parentRoot, parentPayloadStatus);
|
|
1220
|
+
if (parentVariantIndex === undefined) {
|
|
696
1221
|
throw new ForkChoiceError({
|
|
697
1222
|
code: ForkChoiceErrorCode.UNKNOWN_ANCESTOR,
|
|
698
1223
|
descendantRoot: blockRoot,
|
|
699
1224
|
ancestorSlot,
|
|
700
1225
|
});
|
|
701
1226
|
}
|
|
702
|
-
|
|
703
|
-
|
|
1227
|
+
return this.nodes[parentVariantIndex];
|
|
1228
|
+
}
|
|
1229
|
+
/**
|
|
1230
|
+
* Get the parent node index for traversal
|
|
1231
|
+
* For Gloas blocks: returns the correct EMPTY/FULL variant based on parent payload status
|
|
1232
|
+
* For pre-Gloas blocks: returns the simple parent index
|
|
1233
|
+
* Returns undefined if parent doesn't exist or can't be found
|
|
1234
|
+
*/
|
|
1235
|
+
getParentNodeIndex(node) {
|
|
1236
|
+
if (isGloasBlock(node)) {
|
|
1237
|
+
// Use getParentPayloadStatus for Gloas blocks to get correct EMPTY/FULL variant
|
|
1238
|
+
const parentPayloadStatus = this.getParentPayloadStatus(node);
|
|
1239
|
+
return this.getNodeIndexByRootAndStatus(node.parentRoot, parentPayloadStatus);
|
|
1240
|
+
}
|
|
1241
|
+
// Simple parent traversal for pre-Gloas blocks (includes fork transition)
|
|
1242
|
+
return node.parent;
|
|
704
1243
|
}
|
|
705
1244
|
/**
|
|
706
1245
|
* Iterate from a block root backwards over nodes
|
|
1246
|
+
* For Gloas blocks: returns EMPTY/FULL variants (not PENDING) based on parent payload status
|
|
1247
|
+
* For pre-Gloas blocks: returns FULL variants
|
|
707
1248
|
*/
|
|
708
|
-
*iterateAncestorNodes(blockRoot) {
|
|
709
|
-
const startIndex = this.
|
|
1249
|
+
*iterateAncestorNodes(blockRoot, payloadStatus) {
|
|
1250
|
+
const startIndex = this.getNodeIndexByRootAndStatus(blockRoot, payloadStatus);
|
|
710
1251
|
if (startIndex === undefined) {
|
|
711
1252
|
return;
|
|
712
1253
|
}
|
|
@@ -720,19 +1261,28 @@ export class ProtoArray {
|
|
|
720
1261
|
yield* this.iterateAncestorNodesFromNode(node);
|
|
721
1262
|
}
|
|
722
1263
|
/**
|
|
723
|
-
* Iterate from a
|
|
1264
|
+
* Iterate from a node backwards over ancestor nodes
|
|
1265
|
+
* For Gloas blocks: returns EMPTY/FULL variants (not PENDING) based on parent payload status
|
|
1266
|
+
* For pre-Gloas blocks: returns FULL variants
|
|
1267
|
+
* Handles fork transition from Gloas to pre-Gloas blocks
|
|
724
1268
|
*/
|
|
725
1269
|
*iterateAncestorNodesFromNode(node) {
|
|
726
1270
|
while (node.parent !== undefined) {
|
|
727
|
-
|
|
1271
|
+
const parentIndex = this.getParentNodeIndex(node);
|
|
1272
|
+
if (parentIndex === undefined) {
|
|
1273
|
+
break;
|
|
1274
|
+
}
|
|
1275
|
+
node = this.nodes[parentIndex];
|
|
728
1276
|
yield node;
|
|
729
1277
|
}
|
|
730
1278
|
}
|
|
731
1279
|
/**
|
|
732
1280
|
* Get all nodes from a block root backwards
|
|
1281
|
+
* For Gloas blocks: returns EMPTY/FULL variants (not PENDING) based on parent payload status
|
|
1282
|
+
* For pre-Gloas blocks: returns FULL variants
|
|
733
1283
|
*/
|
|
734
|
-
getAllAncestorNodes(blockRoot) {
|
|
735
|
-
const startIndex = this.
|
|
1284
|
+
getAllAncestorNodes(blockRoot, payloadStatus) {
|
|
1285
|
+
const startIndex = this.getNodeIndexByRootAndStatus(blockRoot, payloadStatus);
|
|
736
1286
|
if (startIndex === undefined) {
|
|
737
1287
|
return [];
|
|
738
1288
|
}
|
|
@@ -743,9 +1293,17 @@ export class ProtoArray {
|
|
|
743
1293
|
index: startIndex,
|
|
744
1294
|
});
|
|
745
1295
|
}
|
|
746
|
-
|
|
1296
|
+
// Exclude PENDING variant from returned ancestors.
|
|
1297
|
+
const nodes = [];
|
|
1298
|
+
if (node.payloadStatus !== PayloadStatus.PENDING) {
|
|
1299
|
+
nodes.push(node);
|
|
1300
|
+
}
|
|
747
1301
|
while (node.parent !== undefined) {
|
|
748
|
-
|
|
1302
|
+
const parentIndex = this.getParentNodeIndex(node);
|
|
1303
|
+
if (parentIndex === undefined) {
|
|
1304
|
+
break;
|
|
1305
|
+
}
|
|
1306
|
+
node = this.nodes[parentIndex];
|
|
749
1307
|
nodes.push(node);
|
|
750
1308
|
}
|
|
751
1309
|
return nodes;
|
|
@@ -754,9 +1312,12 @@ export class ProtoArray {
|
|
|
754
1312
|
* The opposite of iterateNodes.
|
|
755
1313
|
* iterateNodes is to find ancestor nodes of a blockRoot.
|
|
756
1314
|
* this is to find non-ancestor nodes of a blockRoot.
|
|
1315
|
+
*
|
|
1316
|
+
* For Gloas blocks: returns EMPTY/FULL variants (not PENDING) based on parent payload status
|
|
1317
|
+
* For pre-Gloas blocks: returns FULL variants
|
|
757
1318
|
*/
|
|
758
|
-
getAllNonAncestorNodes(blockRoot) {
|
|
759
|
-
const startIndex = this.
|
|
1319
|
+
getAllNonAncestorNodes(blockRoot, payloadStatus) {
|
|
1320
|
+
const startIndex = this.getNodeIndexByRootAndStatus(blockRoot, payloadStatus);
|
|
760
1321
|
if (startIndex === undefined) {
|
|
761
1322
|
return [];
|
|
762
1323
|
}
|
|
@@ -767,23 +1328,31 @@ export class ProtoArray {
|
|
|
767
1328
|
index: startIndex,
|
|
768
1329
|
});
|
|
769
1330
|
}
|
|
1331
|
+
// For both Gloas and pre-Gloas blocks
|
|
770
1332
|
const result = [];
|
|
771
1333
|
let nodeIndex = startIndex;
|
|
772
1334
|
while (node.parent !== undefined) {
|
|
773
|
-
const parentIndex = node
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
1335
|
+
const parentIndex = this.getParentNodeIndex(node);
|
|
1336
|
+
if (parentIndex === undefined) {
|
|
1337
|
+
break;
|
|
1338
|
+
}
|
|
1339
|
+
node = this.nodes[parentIndex];
|
|
1340
|
+
// Collect non-ancestor nodes between current and parent
|
|
1341
|
+
// Filter to exclude PENDING nodes (FULL variant pre-gloas, EMPTY or FULL variant post-gloas)
|
|
1342
|
+
result.push(...this.getNodesBetween(nodeIndex, parentIndex).filter((n) => n.payloadStatus !== PayloadStatus.PENDING));
|
|
777
1343
|
nodeIndex = parentIndex;
|
|
778
1344
|
}
|
|
779
|
-
|
|
1345
|
+
// Collect remaining nodes from nodeIndex to beginning
|
|
1346
|
+
result.push(...this.getNodesBetween(nodeIndex, 0).filter((n) => n.payloadStatus !== PayloadStatus.PENDING));
|
|
780
1347
|
return result;
|
|
781
1348
|
}
|
|
782
1349
|
/**
|
|
783
1350
|
* Returns both ancestor and non-ancestor nodes in a single traversal.
|
|
1351
|
+
* For Gloas blocks: returns EMPTY/FULL variants (not PENDING) based on parent payload status
|
|
1352
|
+
* For pre-Gloas blocks: returns FULL variants
|
|
784
1353
|
*/
|
|
785
|
-
getAllAncestorAndNonAncestorNodes(blockRoot) {
|
|
786
|
-
const startIndex = this.
|
|
1354
|
+
getAllAncestorAndNonAncestorNodes(blockRoot, payloadStatus) {
|
|
1355
|
+
const startIndex = this.getNodeIndexByRootAndStatus(blockRoot, payloadStatus);
|
|
787
1356
|
if (startIndex === undefined) {
|
|
788
1357
|
return { ancestors: [], nonAncestors: [] };
|
|
789
1358
|
}
|
|
@@ -796,32 +1365,68 @@ export class ProtoArray {
|
|
|
796
1365
|
}
|
|
797
1366
|
const ancestors = [];
|
|
798
1367
|
const nonAncestors = [];
|
|
1368
|
+
// Include starting node if it's not PENDING (i.e., pre-Gloas or EMPTY/FULL variant post-Gloas)
|
|
1369
|
+
if (node.payloadStatus !== PayloadStatus.PENDING) {
|
|
1370
|
+
ancestors.push(node);
|
|
1371
|
+
}
|
|
799
1372
|
let nodeIndex = startIndex;
|
|
800
1373
|
while (node.parent !== undefined) {
|
|
1374
|
+
const parentIndex = this.getParentNodeIndex(node);
|
|
1375
|
+
if (parentIndex === undefined) {
|
|
1376
|
+
break;
|
|
1377
|
+
}
|
|
1378
|
+
node = this.nodes[parentIndex];
|
|
801
1379
|
ancestors.push(node);
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
nonAncestors.push(...this.getNodesBetween(nodeIndex, parentIndex));
|
|
1380
|
+
// Collect non-ancestor nodes between current and parent
|
|
1381
|
+
// Filter to exclude PENDING nodes (include all FULL/EMPTY for both pre-Gloas and Gloas)
|
|
1382
|
+
nonAncestors.push(...this.getNodesBetween(nodeIndex, parentIndex).filter((n) => n.payloadStatus !== PayloadStatus.PENDING));
|
|
806
1383
|
nodeIndex = parentIndex;
|
|
807
1384
|
}
|
|
808
|
-
|
|
809
|
-
nonAncestors.push(...this.getNodesBetween(nodeIndex, 0));
|
|
1385
|
+
// Collect remaining non-ancestor nodes from nodeIndex to beginning
|
|
1386
|
+
nonAncestors.push(...this.getNodesBetween(nodeIndex, 0).filter((n) => n.payloadStatus !== PayloadStatus.PENDING));
|
|
810
1387
|
return { ancestors, nonAncestors };
|
|
811
1388
|
}
|
|
1389
|
+
/**
|
|
1390
|
+
* Check if a block exists in the proto array
|
|
1391
|
+
* Uses default variant (PENDING for Gloas, FULL for pre-Gloas)
|
|
1392
|
+
*/
|
|
812
1393
|
hasBlock(blockRoot) {
|
|
813
|
-
|
|
1394
|
+
const defaultVariant = this.getDefaultVariant(blockRoot);
|
|
1395
|
+
if (defaultVariant === undefined) {
|
|
1396
|
+
return false;
|
|
1397
|
+
}
|
|
1398
|
+
const index = this.getNodeIndexByRootAndStatus(blockRoot, defaultVariant);
|
|
1399
|
+
return index !== undefined;
|
|
814
1400
|
}
|
|
815
|
-
|
|
816
|
-
|
|
1401
|
+
/**
|
|
1402
|
+
* Return ProtoNode for blockRoot with explicit payload status
|
|
1403
|
+
*
|
|
1404
|
+
* @param blockRoot - The block root to look up
|
|
1405
|
+
* @param payloadStatus - The specific payload status variant (PENDING/EMPTY/FULL)
|
|
1406
|
+
* @returns The ProtoNode for the specified variant, or undefined if not found
|
|
1407
|
+
*
|
|
1408
|
+
* Note: Callers must explicitly specify which variant they need.
|
|
1409
|
+
* Use getDefaultVariant() to get the canonical variant for a block.
|
|
1410
|
+
*/
|
|
1411
|
+
getNode(blockRoot, payloadStatus) {
|
|
1412
|
+
const blockIndex = this.getNodeIndexByRootAndStatus(blockRoot, payloadStatus);
|
|
817
1413
|
if (blockIndex === undefined) {
|
|
818
1414
|
return undefined;
|
|
819
1415
|
}
|
|
820
1416
|
return this.getNodeByIndex(blockIndex);
|
|
821
1417
|
}
|
|
822
|
-
/**
|
|
823
|
-
|
|
824
|
-
|
|
1418
|
+
/**
|
|
1419
|
+
* Return MUTABLE ProtoBlock for blockRoot with explicit payload status
|
|
1420
|
+
*
|
|
1421
|
+
* @param blockRoot - The block root to look up
|
|
1422
|
+
* @param payloadStatus - The specific payload status variant (PENDING/EMPTY/FULL)
|
|
1423
|
+
* @returns The ProtoBlock for the specified variant (spreads properties), or undefined if not found
|
|
1424
|
+
*
|
|
1425
|
+
* Note: Callers must explicitly specify which variant they need.
|
|
1426
|
+
* Use getDefaultVariant() to get the canonical variant for a block.
|
|
1427
|
+
*/
|
|
1428
|
+
getBlock(blockRoot, payloadStatus) {
|
|
1429
|
+
const node = this.getNode(blockRoot, payloadStatus);
|
|
825
1430
|
if (!node) {
|
|
826
1431
|
return undefined;
|
|
827
1432
|
}
|
|
@@ -829,9 +1434,19 @@ export class ProtoArray {
|
|
|
829
1434
|
...node,
|
|
830
1435
|
};
|
|
831
1436
|
}
|
|
832
|
-
/**
|
|
833
|
-
|
|
834
|
-
|
|
1437
|
+
/**
|
|
1438
|
+
* Return NON-MUTABLE ProtoBlock for blockRoot with explicit payload status
|
|
1439
|
+
*
|
|
1440
|
+
* @param blockRoot - The block root to look up
|
|
1441
|
+
* @param payloadStatus - The specific payload status variant (PENDING/EMPTY/FULL)
|
|
1442
|
+
* @returns The ProtoBlock for the specified variant (does not spread properties)
|
|
1443
|
+
* @throws Error if block not found
|
|
1444
|
+
*
|
|
1445
|
+
* Note: Callers must explicitly specify which variant they need.
|
|
1446
|
+
* Use getDefaultVariant() to get the canonical variant for a block.
|
|
1447
|
+
*/
|
|
1448
|
+
getBlockReadonly(blockRoot, payloadStatus) {
|
|
1449
|
+
const node = this.getNode(blockRoot, payloadStatus);
|
|
835
1450
|
if (!node) {
|
|
836
1451
|
throw Error(`No block for root ${blockRoot}`);
|
|
837
1452
|
}
|
|
@@ -840,21 +1455,21 @@ export class ProtoArray {
|
|
|
840
1455
|
/**
|
|
841
1456
|
* Returns `true` if the `descendantRoot` has an ancestor with `ancestorRoot`.
|
|
842
1457
|
* Always returns `false` if either input roots are unknown.
|
|
843
|
-
* Still returns `true` if `ancestorRoot` === `descendantRoot`
|
|
1458
|
+
* Still returns `true` if `ancestorRoot` === `descendantRoot` and payload statuses match.
|
|
844
1459
|
*/
|
|
845
|
-
isDescendant(ancestorRoot, descendantRoot) {
|
|
846
|
-
const ancestorNode = this.getNode(ancestorRoot);
|
|
1460
|
+
isDescendant(ancestorRoot, ancestorPayloadStatus, descendantRoot, descendantPayloadStatus) {
|
|
1461
|
+
const ancestorNode = this.getNode(ancestorRoot, ancestorPayloadStatus);
|
|
847
1462
|
if (!ancestorNode) {
|
|
848
1463
|
return false;
|
|
849
1464
|
}
|
|
850
|
-
if (ancestorRoot === descendantRoot) {
|
|
1465
|
+
if (ancestorRoot === descendantRoot && ancestorPayloadStatus === descendantPayloadStatus) {
|
|
851
1466
|
return true;
|
|
852
1467
|
}
|
|
853
|
-
for (const node of this.iterateAncestorNodes(descendantRoot)) {
|
|
1468
|
+
for (const node of this.iterateAncestorNodes(descendantRoot, descendantPayloadStatus)) {
|
|
854
1469
|
if (node.slot < ancestorNode.slot) {
|
|
855
1470
|
return false;
|
|
856
1471
|
}
|
|
857
|
-
if (node.blockRoot === ancestorNode.blockRoot) {
|
|
1472
|
+
if (node.blockRoot === ancestorNode.blockRoot && node.payloadStatus === ancestorNode.payloadStatus) {
|
|
858
1473
|
return true;
|
|
859
1474
|
}
|
|
860
1475
|
}
|