Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cabal and CHaP #1855

Merged
merged 1 commit into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ repository cardano-haskell-packages

-- See CONTRIBUTING.md for information about when and how to update these.
index-state:
, hackage.haskell.org 2025-01-15T13:32:16Z
, cardano-haskell-packages 2025-01-15T09:59:24Z
, hackage.haskell.org 2025-02-14T05:38:36Z
, cardano-haskell-packages 2025-02-11T21:18:23Z

packages:
hydra-prelude
Expand Down
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions hydra-node/src/Hydra/Network/Ouroboros.hs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ withOuroborosNetwork
, ctaConnectTracers = networkConnectTracers
, ctaHandshakeCallbacks = HandshakeCallbacks acceptableVersion queryVersion
}
(simpleSingletonVersions protocolVersion MkHydraVersionedProtocolData (app chan))
(simpleSingletonVersions protocolVersion MkHydraVersionedProtocolData (\_ -> app chan))
sn
where
networkConnectTracers :: NetworkConnectTracers SockAddr HydraVersionedProtocolNumber
Expand Down Expand Up @@ -278,7 +278,7 @@ withOuroborosNetwork
noTimeLimitsHandshake
hydraVersionedProtocolDataCodec
(HandshakeCallbacks acceptableVersion queryVersion)
(simpleSingletonVersions protocolVersion MkHydraVersionedProtocolData (SomeResponderApplication app))
(simpleSingletonVersions protocolVersion MkHydraVersionedProtocolData (\_ -> SomeResponderApplication app))
nullErrorPolicies
$ \_addr serverAsync -> do
race_ (wait serverAsync) continuation
Expand Down