Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
张蕾
Geth-Modification
Commits
c780901c
Commit
c780901c
authored
8 years ago
by
Felix Lange
Committed by
GitHub
8 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3120 from obscuren/reporter-fix
core: fixed import reporter
parents
be6a3696
ca419f3c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
blockchain.go
core/blockchain.go
+1
-1
No files found.
core/blockchain.go
View file @
c780901c
...
...
@@ -1007,7 +1007,7 @@ func (st *insertStats) report(chain []*types.Block, index int) {
duration
:=
now
.
Sub
(
st
.
startTime
)
if
duration
>
statsReportTimeLimit
||
st
.
queued
>
limit
||
st
.
processed
>
limit
||
st
.
ignored
>
limit
{
start
,
end
:=
chain
[
st
.
lastIndex
],
chain
[
index
]
txcount
:=
countTransactions
(
chain
[
st
.
lastIndex
:
index
])
txcount
:=
countTransactions
(
chain
[
st
.
lastIndex
:
index
+
1
])
glog
.
Infof
(
"imported %d block(s) (%d queued %d ignored) including %d txs in %v. #%v [%x / %x]
\n
"
,
st
.
processed
,
st
.
queued
,
st
.
ignored
,
txcount
,
duration
,
end
.
Number
(),
start
.
Hash
()
.
Bytes
()[
:
4
],
end
.
Hash
()
.
Bytes
()[
:
4
])
*
st
=
insertStats
{
startTime
:
now
,
lastIndex
:
index
}
}
...
...
This diff is collapsed.
Click to expand it.
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