Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
polkadot
Commits
0c9ec166
Commit
0c9ec166
authored
Aug 13, 2018
by
Gav Wood
Committed by
asynchronous rob
Aug 13, 2018
Browse files
Less verbosity (#546)
parent
988f94fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
transaction-pool/src/lib.rs
View file @
0c9ec166
...
...
@@ -298,9 +298,9 @@ impl<'a, A> txpool::Verifier<UncheckedExtrinsic> for Verifier<'a, A> where
let
sender
=
inner
.as_ref
()
.map
(|
x
|
x
.signed
.clone
());
if
encoded_size
<
1024
{
info
!
(
target
:
"transaction-pool"
,
"Transaction verified: {} => {:?}"
,
hash
,
uxt
);
debug
!
(
target
:
"transaction-pool"
,
"Transaction verified: {} => {:?}"
,
hash
,
uxt
);
}
else
{
info
!
(
target
:
"transaction-pool"
,
"Transaction verified: {} ({} bytes is too large to display)"
,
hash
,
encoded_size
);
debug
!
(
target
:
"transaction-pool"
,
"Transaction verified: {} ({} bytes is too large to display)"
,
hash
,
encoded_size
);
}
Ok
(
VerifiedTransaction
{
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment