Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
9c48866f
Unverified
Commit
9c48866f
authored
Oct 19, 2023
by
protolambda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
op-node: on fetching error, accurately report the L1 block that it fails fetching for
parent
3914c0e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
l1_traversal.go
op-node/rollup/derive/l1_traversal.go
+1
-1
No files found.
op-node/rollup/derive/l1_traversal.go
View file @
9c48866f
...
@@ -73,7 +73,7 @@ func (l1t *L1Traversal) AdvanceL1Block(ctx context.Context) error {
...
@@ -73,7 +73,7 @@ func (l1t *L1Traversal) AdvanceL1Block(ctx context.Context) error {
// Parse L1 receipts of the given block and update the L1 system configuration
// Parse L1 receipts of the given block and update the L1 system configuration
_
,
receipts
,
err
:=
l1t
.
l1Blocks
.
FetchReceipts
(
ctx
,
nextL1Origin
.
Hash
)
_
,
receipts
,
err
:=
l1t
.
l1Blocks
.
FetchReceipts
(
ctx
,
nextL1Origin
.
Hash
)
if
err
!=
nil
{
if
err
!=
nil
{
return
NewTemporaryError
(
fmt
.
Errorf
(
"failed to fetch receipts of L1 block %s
for L1 sysCfg update: %w"
,
origin
,
err
))
return
NewTemporaryError
(
fmt
.
Errorf
(
"failed to fetch receipts of L1 block %s
(parent: %s) for L1 sysCfg update: %w"
,
nextL1Origin
,
origin
,
err
))
}
}
if
err
:=
UpdateSystemConfigWithL1Receipts
(
&
l1t
.
sysCfg
,
receipts
,
l1t
.
cfg
);
err
!=
nil
{
if
err
:=
UpdateSystemConfigWithL1Receipts
(
&
l1t
.
sysCfg
,
receipts
,
l1t
.
cfg
);
err
!=
nil
{
// the sysCfg changes should always be formatted correctly.
// the sysCfg changes should always be formatted correctly.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment