From 90991fd3929cc403118ba70b8acfb747d05d6e43 Mon Sep 17 00:00:00 2001 From: Federico Mastellone Date: Sun, 15 Sep 2024 01:13:51 +0000 Subject: [PATCH] wb | no need to pass a cardanoLib now --- nix/workbench/default.nix | 1 - nix/workbench/profile/profile.nix | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/nix/workbench/default.nix b/nix/workbench/default.nix index b2cc66d335e..f657a47333b 100644 --- a/nix/workbench/default.nix +++ b/nix/workbench/default.nix @@ -114,7 +114,6 @@ in pkgs.lib.fix (self: { }: (import ./profile/profile.nix { inherit pkgs lib; - inherit (cardanoNodePackages) cardanoLib; workbenchNix = self; inherit profileName profiling; } diff --git a/nix/workbench/profile/profile.nix b/nix/workbench/profile/profile.nix index a3e716dd2d0..91f0f35c1a0 100644 --- a/nix/workbench/profile/profile.nix +++ b/nix/workbench/profile/profile.nix @@ -1,4 +1,4 @@ -{ pkgs, lib, cardanoLib +{ pkgs, lib , workbenchNix , profileName , profiling @@ -41,7 +41,7 @@ let inherit topologyFiles profiling; inherit workbenchNix; inherit jsonFilePretty; - baseNodeConfig = cardanoLib.environments.testnet.nodeConfig; + baseNodeConfig = workbenchNix.cardanoNodePackages.cardanoLib.environments.testnet.nodeConfig; }) node-services;