good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
68be45e5
Commit
68be45e5
authored
6 years ago
by
Łukasz Kurowski
Committed by
Péter Szilágyi
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
trie: return hasher to pool (#18116)
* trie: return hasher to pool * trie: minor code formatting fix
parent
ffe2fc3b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
trie/iterator.go
+2
-0
2 additions, 0 deletions
trie/iterator.go
trie/proof.go
+2
-0
2 additions, 0 deletions
trie/proof.go
with
4 additions
and
0 deletions
trie/iterator.go
+
2
−
0
View file @
68be45e5
...
...
@@ -181,6 +181,8 @@ func (it *nodeIterator) LeafProof() [][]byte {
if
len
(
it
.
stack
)
>
0
{
if
_
,
ok
:=
it
.
stack
[
len
(
it
.
stack
)
-
1
]
.
node
.
(
valueNode
);
ok
{
hasher
:=
newHasher
(
0
,
0
,
nil
)
defer
returnHasherToPool
(
hasher
)
proofs
:=
make
([][]
byte
,
0
,
len
(
it
.
stack
))
for
i
,
item
:=
range
it
.
stack
[
:
len
(
it
.
stack
)
-
1
]
{
...
...
This diff is collapsed.
Click to expand it.
trie/proof.go
+
2
−
0
View file @
68be45e5
...
...
@@ -66,6 +66,8 @@ func (t *Trie) Prove(key []byte, fromLevel uint, proofDb ethdb.Putter) error {
}
}
hasher
:=
newHasher
(
0
,
0
,
nil
)
defer
returnHasherToPool
(
hasher
)
for
i
,
n
:=
range
nodes
{
// Don't bother checking for errors here since hasher panics
// if encoding doesn't work and we're not writing to any database.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment