Skip to content

Commit

Permalink
fix: static version for localnet
Browse files Browse the repository at this point in the history
  • Loading branch information
jadepark-dev committed Aug 30, 2024
1 parent 986f5e5 commit 0b17739
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 22 deletions.
19 changes: 0 additions & 19 deletions scripts/setup-localnet/get-latest-validator-release-version.sh

This file was deleted.

2 changes: 1 addition & 1 deletion scripts/setup-localnet/localnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cpu_struct="linux";
# Clean up first
bash "$(dirname -- "$0";)/localnet.down.sh"

container_version=v$(bash $(dirname -- "$0";)/get-latest-validator-release-version.sh)
container_version=v1.18.22
container_name="chainlink-solana.test-validator"

echo "Starting $container_name@$container_version"
Expand Down
3 changes: 1 addition & 2 deletions solana.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# It provides two derivations, one for x86_64-linux and another for aarch64-apple-darwin.
# Each derivation downloads the corresponding Solana release.
let
version = "v1.99.22";
version = "v1.18.22";
getBinDerivation =
{
name,
Expand Down Expand Up @@ -83,7 +83,6 @@ in
mkdir -p $out/bin
cp $src/localnet.sh $out/bin/${name}
cp $src/localnet.down.sh $out/bin/
cp $src/get-latest-validator-release-version.sh $out/bin/
chmod +x $out/bin/${name}
'';
};
Expand Down

0 comments on commit 0b17739

Please sign in to comment.