2
0
mirror of synced 2025-02-04 12:44:13 +00:00

Use ETH_PRIVATE_KEY variable instead of deprecated PRIV_KEY

https://github.com/codex-storage/nim-codex/pull/982
This commit is contained in:
Slava 2024-11-04 12:36:25 +02:00
parent 5c1ffbb8af
commit 22e6439731
No known key found for this signature in database
GPG Key ID: 351E7AA9BD0DFEB8

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);