Skip to content

Commit b9b822d

Browse files
mgmeierbolt12
authored andcommitted
TraceStartLeadershipCheckPlus: fix wrong value for delegMapSize
1 parent 9081a53 commit b9b822d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ instance LogFormatting TraceStartLeadershipCheckPlus where
10521052
mconcat [ "kind" .= String "TraceStartLeadershipCheck"
10531053
, "slot" .= toJSON (unSlotNo tsSlotNo)
10541054
, "utxoSize" .= Number (fromIntegral tsUtxoSize)
1055-
, "delegMapSize" .= Number (fromIntegral tsUtxoSize)
1055+
, "delegMapSize" .= Number (fromIntegral tsDelegMapSize)
10561056
, "chainDensity" .= Number (fromRational (toRational tsChainDensity))
10571057
]
10581058
forHuman TraceStartLeadershipCheckPlus {..} =

0 commit comments

Comments
 (0)