mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
* 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>
10 lines
264 B
C#
10 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();
|
|
}
|
|
}
|