Remove Ethereum support (#3182)

This commit is contained in:
Nicolas Dorier
2021-12-11 14:31:41 +09:00
committed by GitHub
parent cf78987fab
commit bd2f35a241
33 changed files with 10 additions and 2361 deletions

View File

@@ -59,7 +59,6 @@ using Serilog;
using NBitcoin.RPC;
#if ALTCOINS
using BTCPayServer.Services.Altcoins.Monero;
using BTCPayServer.Services.Altcoins.Ethereum;
#endif
namespace BTCPayServer.Hosting
{
@@ -90,7 +89,6 @@ namespace BTCPayServer.Hosting
services.AddPayJoinServices();
#if ALTCOINS
services.AddMoneroLike();
services.AddEthereumLike();
#endif
services.TryAddSingleton<SettingsRepository>();
services.TryAddSingleton<ISettingsRepository>(provider => provider.GetService<SettingsRepository>());