From b1d3c83d32ba29521069b955eae60606857264a0 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Wed, 28 Sep 2022 13:22:57 -0600 Subject: [PATCH] Files the IDE thoughtfully did not save earlier --- README.md | 6 +++--- src/naming.test.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 188e62d..7d8d193 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Follow these steps to run the tests: - Export the private key using: ```bash - chibaclonkd keys export mykey --unarmored-hex --unsafe + laconicd keys export mykey --unarmored-hex --unsafe ``` - Copy the private key and assign it to variable `PRIVATE_KEY` in the `.env` file. @@ -41,7 +41,7 @@ Follow these steps to run the tests: - Export the private key and change it in `.env` file again using: ```bash - chibaclonkd keys export mykey --unarmored-hex --unsafe + laconicd keys export mykey --unarmored-hex --unsafe ``` - Run tests: @@ -61,7 +61,7 @@ Follow these steps to run the tests: - Export the private key and change it in `.env` file again using: ```bash - chibaclonkd keys export mykey --unarmored-hex --unsafe + laconicd keys export mykey --unarmored-hex --unsafe ``` - Run tests: diff --git a/src/naming.test.ts b/src/naming.test.ts index 284e43f..943d122 100644 --- a/src/naming.test.ts +++ b/src/naming.test.ts @@ -47,7 +47,7 @@ const namingTests = () => { }); test('Reserve authority.', async () => { - authorityName = `chiba-clonk-${Date.now()}`; + authorityName = `laconic-${Date.now()}`; await registry.reserveAuthority({ name: authorityName }, privateKey, fee); });