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
29c6e115
Unverified
Commit
29c6e115
authored
Aug 13, 2023
by
OptimismBot
Committed by
GitHub
Aug 13, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6770 from mdehoog/e2e-test-withdrawal-time-bug
Fix minor logging bug in E2E test
parents
be461bd0
842af2ea
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
user.go
op-e2e/actions/user.go
+1
-1
No files found.
op-e2e/actions/user.go
View file @
29c6e115
...
...
@@ -484,7 +484,7 @@ func (s *CrossLayerUser) CompleteWithdrawal(t Testing, l2TxHash common.Hash) com
// Check if the withdrawal may be completed yet
if
l2OutputBlock
.
Time
()
+
finalizationPeriod
.
Uint64
()
>=
l1Head
.
Time
{
t
.
InvalidAction
(
"withdrawal tx %s was included in L2 block %d (time %d) but L1 only knows of L2 proposal %d (time %d) at head %d (time %d) which has not reached output confirmation yet (period is %d)"
,
l2TxHash
,
l2WithdrawalBlock
.
NumberU64
(),
l2WithdrawalBlock
.
Time
(),
l2OutputBlock
.
NumberU64
(),
l2OutputBlock
.
Time
(),
finalizationPeriod
.
Uint64
(),
l1Head
.
Number
.
Uint64
(),
l1Head
.
Time
)
l2TxHash
,
l2WithdrawalBlock
.
NumberU64
(),
l2WithdrawalBlock
.
Time
(),
l2OutputBlock
.
NumberU64
(),
l2OutputBlock
.
Time
(),
l1Head
.
Number
.
Uint64
(),
l1Head
.
Time
,
finalizationPeriod
.
Uint64
()
)
return
common
.
Hash
{}
}
...
...
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