Skip to content

Commit

Permalink
[LW-10808] Update cardano-node to 9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michalrus committed Jul 18, 2024
1 parent 054405c commit 9b05cda
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
14 changes: 7 additions & 7 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 @@ -3,7 +3,7 @@

inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-22.11-darwin";
cardano-wallet-unpatched.url = "github:cardano-foundation/cardano-wallet/v2024-05-05";
cardano-wallet-unpatched.url = "github:cardano-foundation/cardano-wallet/master"; # FIXME: use real release
cardano-wallet-unpatched.flake = false; # otherwise, +10k quadratic dependencies in flake.lock…
cardano-playground.url = "github:input-output-hk/cardano-playground";
cardano-playground.flake = false; # otherwise, +9k dependencies in flake.lock…
Expand Down
5 changes: 3 additions & 2 deletions nix/internal/launcher-config.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,13 @@ let
builtins.readFile (originalFiles + "/config.json")));

nodeConfig = originalNodeConfig // {
ConwayGenesisFile = originalFiles + "/" + originalNodeConfig.ConwayGenesisFile;
AlonzoGenesisFile = originalFiles + "/" + originalNodeConfig.AlonzoGenesisFile;
ByronGenesisFile = originalFiles + "/" + originalNodeConfig.ByronGenesisFile;
ShelleyGenesisFile = originalFiles + "/" + originalNodeConfig.ShelleyGenesisFile;
minSeverity = "Info"; # XXX: Needed for sync % updates.
};
} // (if originalNodeConfig ? ConwayGenesisFile then {
ConwayGenesisFile = originalFiles + "/" + originalNodeConfig.ConwayGenesisFile;
} else {});
in {
cluster = envName;
networkName = envName;
Expand Down

0 comments on commit 9b05cda

Please sign in to comment.