Merge branch 'master' into spike/local-continuous-debug

This commit is contained in:
benbierens 2023-08-07 18:28:18 +02:00
commit ee1c11542e
No known key found for this signature in database
GPG Key ID: FE44815D96D0A1AA
2 changed files with 7 additions and 2 deletions

View File

@ -11,7 +11,7 @@ namespace DistTestCore.Marketplace
public CodexContractsContainerRecipe()
{
Image = "codexstorage/dist-tests-codex-contracts-eth:sha-b4e4897";
Image = "codexstorage/dist-tests-codex-contracts-eth:sha-9a83699";
}
protected override void Initialize(StartupConfig startupConfig)

View File

@ -91,8 +91,13 @@ namespace DistTestCore.Marketplace
{
debug(line);
if (line.Contains(RequiredCompiledString)) SeenCompileString = true;
if (line.Contains(ReadyString))
{
if (!SeenCompileString) throw new Exception("CodexContracts deployment failed. " +
"Solidity files not compiled before process exited.");
if (SeenCompileString && line.Contains(ReadyString)) Found = true;
Found = true;
}
}
}
}