btcpayserver/BTCPayServer/Configuration/LightningNetworkOptions.cs
Andrew Camilleri 2f23bad3bc
Support the new LN lib (#5422)
* Support the new LN lib

* fix test

* do not cache factories

* try without useless userinfo in lnd

* Remove monero wallet files

* support simpler DI too

---------

Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
2023-11-21 18:55:02 +09:00

11 lines
264 B
C#

using System.Collections.Generic;
using BTCPayServer.Lightning;
namespace BTCPayServer.Configuration
{
public class LightningNetworkOptions
{
public Dictionary<string, ILightningClient> InternalLightningByCryptoCode { get; set; } = new();
}
}