From 44a7bdbd54a645f242d742c5775a66b63cdfa4b4 Mon Sep 17 00:00:00 2001 From: joaovpmamede Date: Thu, 25 Jan 2018 09:38:02 +0000 Subject: [PATCH] Fix typo on the constructor name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7099b90..0c446e1 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ $ composer require elementsproject/lightning-charge-client-php require_once 'vendor/autoload.php'; // Initialize client -$charge = new LightingChargeClient('http://localhost:8009', '[TOKEN]'); +$charge = new LightningChargeClient('http://localhost:8009', '[TOKEN]'); // Create invoice $invoice = $charge->invoice([ 'msatoshi' => 50, 'metadata' => [ 'customer' => 'Satoshi', 'products' => [ 'potato', 'chips' ] ] ]);