Skip to content

Commit 4e43cd4

Browse files
committed
fix: rename PLATFORM_WALLET_PASSWORD to PLATFORM_WALLET_KEY
1 parent 69b8f27 commit 4e43cd4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.env.demo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ [email protected]
5050
AFJ_VERSION=ghcr.io/credebl/credo-controller:latest
5151

5252
PLATFORM_WALLET_NAME=platform-admin
53-
PLATFORM_WALLET_PASSWORD='U2FsdGVkX19l6w/PpuicnGBYThBHolzF27oN0JwfWkc='
53+
PLATFORM_WALLET_KEY='U2FsdGVkX19l6w/PpuicnGBYThBHolzF27oN0JwfWkc='
5454
PLATFORM_SEED=000000000000000000000000Steward1
5555
PLATFORM_ID=1
5656

.env.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ AFJ_VERSION=afj-0.4.1:latest
9191
FIDO_API_ENDPOINT=http://localhost:8000 # Host:port of your FIDO (WebAuthn) Server
9292

9393
PLATFORM_WALLET_NAME=platform-admin
94-
PLATFORM_WALLET_PASSWORD= // Please provide encrypt password using crypto-js
94+
PLATFORM_WALLET_KEY= // Please provide encrypt password using crypto-js
9595
PLATFORM_SEED= // The seed should consist of 32 characters.
9696
PLATFORM_ID=
9797

apps/agent-service/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async function bootstrap(): Promise<void> {
2929

3030
const agentSpinupPayload: IAgentSpinupDto = {
3131
walletName: process.env.PLATFORM_WALLET_NAME,
32-
walletPassword: process.env.PLATFORM_WALLET_PASSWORD,
32+
walletPassword: process.env.PLATFORM_WALLET_KEY,
3333
seed: process.env.PLATFORM_SEED,
3434
orgName: `${CommonConstants.PLATFORM_ADMIN_ORG}`,
3535
platformAdminEmail: process.env.PLATFORM_ADMIN_EMAIL,

0 commit comments

Comments
 (0)