mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
fix lp
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Product>Liquid+</Product>
|
<Product>Liquid+</Product>
|
||||||
<Description>Enhanced support for the liquid network.</Description>
|
<Description>Enhanced support for the liquid network.</Description>
|
||||||
<Version>1.1.3</Version>
|
<Version>1.1.4</Version>
|
||||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|||||||
@@ -65,7 +65,10 @@ namespace BTCPayServer.Plugins.LiquidPlus
|
|||||||
{
|
{
|
||||||
var code = configuration.CryptoCode
|
var code = configuration.CryptoCode
|
||||||
.Replace("-", "")
|
.Replace("-", "")
|
||||||
.Replace("_", "");
|
.Replace("_", "").ToUpperInvariant();
|
||||||
|
|
||||||
|
if(code == "LBTC" || code == "USDT" || code == "ETB" || code == "LCAD")
|
||||||
|
return;
|
||||||
services.AddBTCPayNetwork(new ElementsBTCPayNetwork()
|
services.AddBTCPayNetwork(new ElementsBTCPayNetwork()
|
||||||
{
|
{
|
||||||
CryptoCode = code,
|
CryptoCode = code,
|
||||||
|
|||||||
Reference in New Issue
Block a user