Merge pull request #107 from codex-storage/feat/switch-docker-variable

Use ETH_PRIVATE_KEY variable instead of deprecated PRIV_KEY
This commit is contained in:
Ben Bierens 2024-11-04 12:02:55 +01:00 committed by GitHub
commit 1dd17037ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ namespace CodexPlugin
// Custom scripting in the Codex test image will write this variable to a private-key file,
// and pass the correct filename to Codex.
var account = marketplaceSetup.EthAccountSetup.GetNew();
AddEnvVar("PRIV_KEY", account.PrivateKey);
AddEnvVar("ETH_PRIVATE_KEY", account.PrivateKey);
Additional(account);
SetCommandOverride(marketplaceSetup);