Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
lbry
lbrycrd
Commits
7eca4f00
Unverified
Commit
7eca4f00
authored
Oct 13, 2018
by
kay kurokawa
Browse files
Remove excessive logging when writing nodes on claimtrie to disk
parent
bdfda3c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/claimtrie.cpp
View file @
7eca4f00
...
...
@@ -973,7 +973,6 @@ void CClaimTrie::BatchWriteNode(CDBBatch& batch, const std::string& name, const
uint32_t
num_claims
=
0
;
if
(
pNode
)
num_claims
=
pNode
->
claims
.
size
();
LogPrintf
(
"%s: Writing %s to disk with %d claims
\n
"
,
__func__
,
name
,
num_claims
);
if
(
pNode
)
batch
.
Write
(
std
::
make_pair
(
TRIE_NODE
,
name
),
*
pNode
);
else
...
...
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