From 718a36ddd044d99a94484212472f6f61aff94cc0 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Thu, 22 Mar 2018 01:10:14 +0900 Subject: [PATCH] Remove dev time stuff --- BTCPayServer/Hosting/Startup.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/BTCPayServer/Hosting/Startup.cs b/BTCPayServer/Hosting/Startup.cs index 6409d1b5f..afa361675 100644 --- a/BTCPayServer/Hosting/Startup.cs +++ b/BTCPayServer/Hosting/Startup.cs @@ -94,13 +94,13 @@ namespace BTCPayServer.Hosting }); // Needed to debug U2F for ledger support - services.Configure(kestrel => - { - kestrel.Listen(IPAddress.Loopback, 5012, l => - { - l.UseHttps("devtest.pfx", "toto"); - }); - }); + //services.Configure(kestrel => + //{ + // kestrel.Listen(IPAddress.Loopback, 5012, l => + // { + // l.UseHttps("devtest.pfx", "toto"); + // }); + //}); } // Big hack, tests fails if only call AddHangfire because Hangfire fail at initializing at the second test run