Skip to content

Annotated decoder for TxSubmission mini-protocol #4934

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

Merged
merged 7 commits into from
Aug 6, 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
2 changes: 1 addition & 1 deletion cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repository cardano-haskell-packages
-- repeat the index-state for hackage to work around haskell.nix parsing limitation
index-state:
-- Bump this if you need newer packages from Hackage
, hackage.haskell.org 2025-07-08T15:23:02Z
, hackage.haskell.org 2025-08-05T15:28:56Z

-- Bump this if you need newer packages from CHaP
, cardano-haskell-packages 2025-02-15T18:39:38Z
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ library
ouroboros-network-protocols ^>=0.15,
random ^>=1.2,
text >=1.2.4 && <2.2,
typed-protocols ^>=1.0,
typed-protocols ^>=1.1,

-- Directories containing source files.
hs-source-dirs: src
Expand Down
95 changes: 73 additions & 22 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
inputs.hackage.follows = "hackageNix";
};
hackageNix = {
url = "github:input-output-hk/hackage.nix?ref=for-stackage";
url = "github:input-output-hk/hackage.nix";
flake = false;
};
nixpkgs.follows = "haskellNix/nixpkgs-unstable";
Expand Down
2 changes: 2 additions & 0 deletions nix/ouroboros-network.nix
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ let
# don't run checks using Wine when cross compiling
packages.network-mux.components.tests.test.preCheck =
if buildSystem == "x86_64-linux" then "export GHCRTS=-M800M" else "";
packages.ouroboros-network-protocols.components.tests.test.preCheck =
if buildSystem == "x86_64-linux" then "export GHCRTS=-M800M" else "";
packages.ouroboros-network.components.tests.sim-tests.preCheck =
if buildSystem == "x86_64-linux" then "export GHCRTS=-M2400M" else "";
})
Expand Down
2 changes: 1 addition & 1 deletion ouroboros-network-api/ouroboros-network-api.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ library
random,
serialise >=0.2 && <0.3,
text >=1.2 && <2.2,
typed-protocols ^>=1.0,
typed-protocols ^>=1.1,

ghc-options:
-Wall
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ library
quiet,
random ^>=1.2,
text,
typed-protocols:{typed-protocols, cborg, stateful} ^>=1.0,
typed-protocols:{typed-protocols, cborg, stateful} ^>=1.1,

if os(windows)
build-depends: Win32 >=2.5.4.1 && <3.0
Expand Down
Loading
Loading