mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
2f23bad3bc
* 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>
11 lines
264 B
C#
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();
|
|
}
|
|
}
|