From 2d5d43cf2c0ea87d2c6a40550823469f082aab21 Mon Sep 17 00:00:00 2001
From: Ramakrishnan Muthukrishnan <ram@leastauthority.com>
Date: Wed, 6 Nov 2019 13:26:49 +0530
Subject: [PATCH] stripe-key is the Stripe Secret Key

Stripe developer dashboard provides a few keys and we specifically
need to use the secret key.
---
 src/PaymentServer/Main.hs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/PaymentServer/Main.hs b/src/PaymentServer/Main.hs
index ca5bb80..93ea9ee 100644
--- a/src/PaymentServer/Main.hs
+++ b/src/PaymentServer/Main.hs
@@ -165,7 +165,7 @@ sample = ServerConfig
   <*> (http <|> https)
   <*> option str
   ( long "stripe-key"
-    <> help "Stripe API key" )
+    <> help "Stripe Secret key" )
 
 opts :: ParserInfo ServerConfig
 opts = info (sample <**> helper)
-- 
GitLab