Skip to content

Commit 1dd1703

Browse files
authored
Merge pull request #107 from codex-storage/feat/switch-docker-variable
Use ETH_PRIVATE_KEY variable instead of deprecated PRIV_KEY
2 parents 5c1ffbb + 22e6439 commit 1dd1703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ProjectPlugins/CodexPlugin/CodexContainerRecipe.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ protected override void Initialize(StartupConfig startupConfig)
109109
// Custom scripting in the Codex test image will write this variable to a private-key file,
110110
// and pass the correct filename to Codex.
111111
var account = marketplaceSetup.EthAccountSetup.GetNew();
112-
AddEnvVar("PRIV_KEY", account.PrivateKey);
112+
AddEnvVar("ETH_PRIVATE_KEY", account.PrivateKey);
113113
Additional(account);
114114

115115
SetCommandOverride(marketplaceSetup);

0 commit comments

Comments
 (0)