Add LND support

This commit is contained in:
nicolas.dorier
2018-07-11 18:13:57 +09:00
parent 6cdbdd8343
commit 9e58d685cb
8 changed files with 250 additions and 127 deletions

View File

@@ -86,7 +86,11 @@ namespace DockerGenerator
{
fragments.Add(crypto.CLightningFragment);
}
}
if(composition.SelectedLN == "lnd" && crypto.LNDFragment != null)
{
fragments.Add(crypto.LNDFragment);
}
}
var def = new DockerComposeDefinition(name, fragments);
def.FragmentLocation = fragmentLocation;