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
e63f2b61
Commit
e63f2b61
authored
Jun 02, 2023
by
Sebastian Stammler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
op-chain-ops: Fix logging in ether migration
parent
6a474e36
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
migrate.go
op-chain-ops/ether/migrate.go
+3
-3
No files found.
op-chain-ops/ether/migrate.go
View file @
e63f2b61
...
...
@@ -182,7 +182,7 @@ func doMigration(mutableDB *state.StateDB, dbFactory util.DBFactory, addresses [
if
noCheck
{
log
.
Error
(
"unknown slot type"
,
"slot"
,
key
,
"type"
,
slotType
)
}
else
{
log
.
Crit
(
"unknown slot type
%d, should never happen
"
,
slotType
)
log
.
Crit
(
"unknown slot type
, should never happen"
,
"type
"
,
slotType
)
}
}
...
...
@@ -209,10 +209,10 @@ func doMigration(mutableDB *state.StateDB, dbFactory util.DBFactory, addresses [
// Print first 10 accounts without balance
aleft
:=
10
log
.
Info
(
"Listing first
%d accounts without balance
"
,
aleft
)
log
.
Info
(
"Listing first
accounts without balance"
,
"num
"
,
aleft
)
for
i
,
a
:=
range
addresses
{
if
!
seenAccounts
[
a
]
{
log
.
Info
(
"Account
[%d] without balance
"
,
i
,
"addr"
,
a
)
log
.
Info
(
"Account
without balance"
,
"idx
"
,
i
,
"addr"
,
a
)
aleft
--
}
if
aleft
==
0
{
...
...
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