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
dd995247
Commit
dd995247
authored
Aug 06, 2023
by
Hamdi Allam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci lint
parent
cc91c03c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
l2_processor.go
indexer/processor/l2_processor.go
+5
-2
No files found.
indexer/processor/l2_processor.go
View file @
dd995247
...
...
@@ -212,7 +212,10 @@ func l2ProcessContractEventsBridgeTransactions(processLog log.Logger, db *databa
if
len
(
transactionWithdrawals
)
>
0
{
processLog
.
Info
(
"detected transaction withdrawals"
,
"size"
,
len
(
transactionWithdrawals
))
db
.
BridgeTransactions
.
StoreL2TransactionWithdrawals
(
transactionWithdrawals
)
err
:=
db
.
BridgeTransactions
.
StoreL2TransactionWithdrawals
(
transactionWithdrawals
)
if
err
!=
nil
{
return
err
}
if
len
(
ethWithdrawals
)
>
0
{
processLog
.
Info
(
"detected L2ToL1MessagePasser ETH transfers"
,
"size"
,
len
(
ethWithdrawals
))
...
...
@@ -225,7 +228,7 @@ func l2ProcessContractEventsBridgeTransactions(processLog log.Logger, db *databa
// (2) Process Deposit Finalization
// - Since L2 deposits are apart of the block derivation processes, we dont track finalization as it's too tricky
// to do so purely from the L2-side since there is not a way to easily identify deposit transations on L2 without walking
// to do so purely from the L2-side since there is not a way to easily identify deposit transa
c
tions on L2 without walking
// the transaction list of every L2 epoch.
// a-ok!
...
...
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