From 8ab4b8e6acf677173058ad2cc8a5f813d19cd48e Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 21 Mar 2019 12:00:16 -0700 Subject: [PATCH] Support local networks for easy testing --- install/testnet-deploy.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/testnet-deploy.sh b/install/testnet-deploy.sh index 1d0e5e7c1..00003bacd 100755 --- a/install/testnet-deploy.sh +++ b/install/testnet-deploy.sh @@ -32,6 +32,9 @@ edge|beta) stable) URL=https://api.testnet.solana.com ;; +localhost) + URL=http://localhost:8899 + ;; *) echo "Error: unknown channel: $CHANNEL" exit 1