From 32aef9b144664fd04e4366e9aa6c7d0b8d1b7b7f Mon Sep 17 00:00:00 2001 From: Jordan Ribbink Date: Tue, 30 Dec 2025 10:49:34 -0800 Subject: [PATCH] Update dummy key value for fork testing tutorial --- .../cadence/emulator-fork-testing/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/blockchain-development-tutorials/cadence/emulator-fork-testing/index.md b/docs/blockchain-development-tutorials/cadence/emulator-fork-testing/index.md index bba40b4a3c..e7504b6e87 100644 --- a/docs/blockchain-development-tutorials/cadence/emulator-fork-testing/index.md +++ b/docs/blockchain-development-tutorials/cadence/emulator-fork-testing/index.md @@ -281,10 +281,10 @@ When the emulator starts, note the service account address in the logs: Add the forked emulator's service account (use the address from the startup logs and a dummy key). -First, create a dummy key file: +First, create a dummy key file. Use a simple P-256 placeholder so tooling that validates curve membership continues working: ```bash -echo "0000000000000000000000000000000000000000000000000000000000000000" > blank-key.pkey +echo "0x0000000000000000000000000000000000000000000000000000000000000001" > blank-key.pkey ``` Then manually add to your `flow.json`: