From b3506a0064768a51e9c27af6ecfba65620226270 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Garc=C3=ADa?= Date: Thu, 28 Nov 2019 19:14:12 +0100 Subject: [PATCH] fix create livenet token --- src/Commands/CreateKeypair.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/CreateKeypair.php b/src/Commands/CreateKeypair.php index 224590e..b65b891 100644 --- a/src/Commands/CreateKeypair.php +++ b/src/Commands/CreateKeypair.php @@ -133,7 +133,7 @@ public function pairWithServerAndCreateToken() if ('testnet' == $this->config['network']) { $this->network = 'https://test.bitpay.com'; } elseif ('livenet' == $this->config['network']) { - $this->network = 'https://test.bitpay.com'; + $this->network = 'https://bitpay.com'; } else { $this->network = 'https://bitpay.com'; }