Merge branch 'master' of https://github.com/Vutov/btcpayserver-docker into Vutov-master

This commit is contained in:
nicolas.dorier
2018-07-22 00:55:18 +09:00
4 changed files with 107 additions and 40 deletions

View File

@@ -6,21 +6,21 @@ namespace DockerGenerator
{
public class CryptoDefinition
{
public string Crypto
{
get;
private set;
}
public string CryptoFragment
{
get;
private set;
}
public string CLightningFragment
{
get;
private set;
}
public string Crypto
{
get;
private set;
}
public string CryptoFragment
{
get;
private set;
}
public string CLightningFragment
{
get;
private set;
}
public string LNDFragment
{
get;
@@ -28,33 +28,34 @@ namespace DockerGenerator
}
public static CryptoDefinition[] GetDefinitions()
{
return new[]
{
new CryptoDefinition()
{
Crypto = "ltc",
CryptoFragment = "litecoin",
CLightningFragment = "litecoin-clightning",
{
return new[]
{
new CryptoDefinition()
{
Crypto = "ltc",
CryptoFragment = "litecoin",
CLightningFragment = "litecoin-clightning",
LNDFragment = "litecoin-lnd"
},
new CryptoDefinition()
{
Crypto = "btc",
CryptoFragment = "bitcoin",
CLightningFragment = "bitcoin-clightning",
new CryptoDefinition()
{
Crypto = "btc",
CryptoFragment = "bitcoin",
CLightningFragment = "bitcoin-clightning",
LNDFragment = "bitcoin-lnd"
},
new CryptoDefinition()
{
Crypto = "btg",
CryptoFragment = "bgold"
},
new CryptoDefinition()
{
Crypto = "ftc",
CryptoFragment = "feathercoin"
},
},
new CryptoDefinition()
{
Crypto = "btg",
CryptoFragment = "bgold",
LNDFragment = "bgold-lnd"
},
new CryptoDefinition()
{
Crypto = "ftc",
CryptoFragment = "feathercoin"
},
new CryptoDefinition()
{
Crypto = "grs",
@@ -66,6 +67,6 @@ namespace DockerGenerator
CryptoFragment = "viacoin"
}
};
}
}
}
}