Skip to content

Commit c6d6527

Browse files
committed
tx-submission-v2: fix TraceTxSubmissionInbound tracer
1 parent 1bf4736 commit c6d6527

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

cardano-node/src/Cardano/Node/Tracing/Tracers/Consensus.hs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,6 +1194,9 @@ instance MetaTrace (TraceTxSubmissionInbound txid tx) where
11941194
documentFor (Namespace _ ["TxInboundAddedToMempool"]) = Just $ mconcat
11951195
[ "Transaction ids that made it into the mempool"
11961196
]
1197+
documentFor (Namespace _ ["TxInboundRejectedFromMempool"]) = Just $ mconcat
1198+
[ "Transaction ids that were rejected from mempool"
1199+
]
11971200
documentFor (Namespace _ ["TxInboundDecision"]) = Just $ mconcat
11981201
[ "Current decision made by the decision logic thread"
11991202
, " to guide the TX Submission protocol"
@@ -1210,7 +1213,9 @@ instance MetaTrace (TraceTxSubmissionInbound txid tx) where
12101213
, Namespace [] ["CanRequestMoreTxs"]
12111214
, Namespace [] ["CannotRequestMoreTxs"]
12121215
, Namespace [] ["TxInboundAddedToMempool"]
1216+
, Namespace [] ["TxInboundRejectedFromMempool"]
12131217
, Namespace [] ["TxInboundDecision"]
1218+
, Namespace [] ["TxInboundError"]
12141219
]
12151220

12161221
--------------------------------------------------------------------------------

0 commit comments

Comments
 (0)