Stores contracts deployment as part of CodexDeployment json.

This commit is contained in:
benbierens 2023-10-20 10:15:38 +02:00
parent 2b10f2ec58
commit 8910c7ff27
No known key found for this signature in database
GPG Key ID: FE44815D96D0A1AA
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
public override string ToString() public override string ToString()
{ {
return $"{Wei} Wei"; return $"{Eth} Eth";
} }
} }

View File

@ -79,7 +79,7 @@ namespace CodexNetDeployer
CheckContainerRestarts(startResults); CheckContainerRestarts(startResults);
var codexContainers = startResults.Select(s => s.CodexNode.Container).ToArray(); var codexContainers = startResults.Select(s => s.CodexNode.Container).ToArray();
return new CodexDeployment(codexContainers, gethDeployment, metricsService, CreateMetadata(startUtc)); return new CodexDeployment(codexContainers, gethDeployment, contractsDeployment, metricsService, CreateMetadata(startUtc));
} }
private EntryPoint CreateEntryPoint(ILog log) private EntryPoint CreateEntryPoint(ILog log)