Skip to content

Commit 22e6439

Browse files
Use ETH_PRIVATE_KEY variable instead of deprecated PRIV_KEY
codex-storage/nim-codex#982
1 parent 5c1ffbb commit 22e6439

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ProjectPlugins/CodexPlugin/CodexContainerRecipe.cs

+1-1
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)