Skip to content

Commit

Permalink
SendFetchRequest: add unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
disassembler authored and Soupstraw committed Nov 29, 2022
1 parent b6f44ab commit 96cfc78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cardano-node/src/Cardano/Node/Tracing/Tracers/Consensus.hs
Expand Up @@ -581,7 +581,7 @@ instance (HasHeader header, ConvertRawHash header) =>
mconcat [ "kind" .= String "AddedFetchRequest" ]
forMachine _dtal BlockFetch.AcknowledgedFetchRequest {} =
mconcat [ "kind" .= String "AcknowledgedFetchRequest" ]
forMachine _dtal (BlockFetch.SendFetchRequest af) =
forMachine _dtal (BlockFetch.SendFetchRequest af _) =
mconcat [ "kind" .= String "SendFetchRequest"
, "head" .= String (renderChainHash
(renderHeaderHash (Proxy @header))
Expand Down
Expand Up @@ -1104,7 +1104,7 @@ instance (HasHeader header, ConvertRawHash header)
mconcat [ "kind" .= String "AddedFetchRequest" ]
toObject _verb BlockFetch.AcknowledgedFetchRequest {} =
mconcat [ "kind" .= String "AcknowledgedFetchRequest" ]
toObject _verb (BlockFetch.SendFetchRequest af) =
toObject _verb (BlockFetch.SendFetchRequest af _) =
mconcat [ "kind" .= String "SendFetchRequest"
, "head" .= String (renderChainHash
(renderHeaderHash (Proxy @header))
Expand Down

0 comments on commit 96cfc78

Please sign in to comment.