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
b482423e
Unverified
Commit
b482423e
authored
Jun 24, 2020
by
Marius van der Wijden
Committed by
GitHub
Jun 24, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trie: reduce allocs in insertPreimage (#21261)
parent
93142e50
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
database.go
trie/database.go
+3
-2
No files found.
trie/database.go
View file @
b482423e
...
@@ -349,14 +349,15 @@ func (db *Database) insert(hash common.Hash, size int, node node) {
...
@@ -349,14 +349,15 @@ func (db *Database) insert(hash common.Hash, size int, node node) {
}
}
// insertPreimage writes a new trie node pre-image to the memory database if it's
// insertPreimage writes a new trie node pre-image to the memory database if it's
// yet unknown. The method will make a copy of the slice.
// yet unknown. The method will NOT make a copy of the slice,
// only use if the preimage will NOT be changed later on.
//
//
// Note, this method assumes that the database's lock is held!
// Note, this method assumes that the database's lock is held!
func
(
db
*
Database
)
insertPreimage
(
hash
common
.
Hash
,
preimage
[]
byte
)
{
func
(
db
*
Database
)
insertPreimage
(
hash
common
.
Hash
,
preimage
[]
byte
)
{
if
_
,
ok
:=
db
.
preimages
[
hash
];
ok
{
if
_
,
ok
:=
db
.
preimages
[
hash
];
ok
{
return
return
}
}
db
.
preimages
[
hash
]
=
common
.
CopyBytes
(
preimage
)
db
.
preimages
[
hash
]
=
preimage
db
.
preimagesSize
+=
common
.
StorageSize
(
common
.
HashLength
+
len
(
preimage
))
db
.
preimagesSize
+=
common
.
StorageSize
(
common
.
HashLength
+
len
(
preimage
))
}
}
...
...
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