From ee4111a8064f2d503ba8e0d3db05dd1fcd22f4cf Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Wed, 16 Sep 2020 15:37:07 -0700 Subject: [PATCH] config: update to new testnet server domain --- README.md | 2 +- config.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 38fca53..36f2377 100644 --- a/README.md +++ b/README.md @@ -429,7 +429,7 @@ the following command should be run: Assuming `poold` is now in your `$PATH`, you can start the daemon with the following command (assuming you have a local testnet `lnd` running): ``` -🏔 poold --network=testnet --auctionserver=clm.testnet.lightningcluster.com:12010 --debuglevel=trace +🏔 poold --network=testnet --debuglevel=trace ``` The current server is reachable at `clm.testnet.lightningcluster.com:12010`, diff --git a/config.go b/config.go index 44a6cfb..0e5e534 100644 --- a/config.go +++ b/config.go @@ -115,7 +115,7 @@ type Config struct { const ( MainnetServer = "pool.lightning.finance:12010" - TestnetServer = "test.auction.lightning.today:12009" + TestnetServer = "test.pool.lightning.finance:12010" // defaultRPCTimeout is the default number of seconds an unary RPC call // is allowed to take to complete.