From c77cbef52b0f53f3994231faaf41cdfea713bd79 Mon Sep 17 00:00:00 2001 From: Nabarun Date: Tue, 23 Jul 2024 09:56:17 +0530 Subject: [PATCH 1/2] Remove laconic2d repo reference --- .gitea/workflows/test.yml | 2 +- .github/workflows/test.yml | 2 +- README.md | 2 +- src/auction.test.ts | 2 +- src/laconic-client.ts | 2 +- src/nameservice-expiry.test.ts | 2 +- src/onboarding.test.ts | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 561430e..0bd3179 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v3 with: path: "./laconicd/" - repository: cerc-io/laconic2d # TODO: Update to laconicd on repo renaming + repository: cerc-io/laconicd # TODO: Update to laconicd on repo renaming fetch-depth: 0 ref: main - name: Environment diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a45b8e6..9d19b27 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v3 with: path: "./laconicd/" - repository: cerc-io/laconic2d + repository: cerc-io/laconicd fetch-depth: 0 ref: main - name: Environment diff --git a/README.md b/README.md index 892129b..b63533f 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Follow these steps to run the tests: cp .env.example .env ``` -- Clone the [laconicd repo](https://git.vdb.to/cerc-io/laconic2d) and change to repo directory. +- Clone the [laconicd repo](https://git.vdb.to/cerc-io/laconicd) and change to repo directory. - Run the chain using `./scripts/init.sh`. diff --git a/src/auction.test.ts b/src/auction.test.ts index 9e7c90a..62bd654 100644 --- a/src/auction.test.ts +++ b/src/auction.test.ts @@ -115,7 +115,7 @@ if (!process.env.TEST_AUCTIONS_ENABLED) { test('skipping auction tests', () => {}); } else { /** - Running these tests requires name auctions enabled. In laconic2d repo run: + Running these tests requires name auctions enabled. In laconicd repo run: TEST_AUCTION_ENABLED=true ./init.sh diff --git a/src/laconic-client.ts b/src/laconic-client.ts index ec57184..a96b4eb 100644 --- a/src/laconic-client.ts +++ b/src/laconic-client.ts @@ -24,7 +24,7 @@ import { MsgOnboardParticipantResponse } from './proto/cerc/onboarding/v1/tx'; import { bankTypes } from './types/cosmos/bank/message'; import { EthPayload } from './proto/cerc/onboarding/v1/onboarding'; -const DEFAULT_WRITE_ERROR = 'Unable to write to laconic2d.'; +const DEFAULT_WRITE_ERROR = 'Unable to write to laconicd.'; export const laconicDefaultRegistryTypes: ReadonlyArray<[string, GeneratedType]> = [ ...defaultRegistryTypes, diff --git a/src/nameservice-expiry.test.ts b/src/nameservice-expiry.test.ts index c7ae38a..a8627e7 100644 --- a/src/nameservice-expiry.test.ts +++ b/src/nameservice-expiry.test.ts @@ -103,7 +103,7 @@ if (!process.env.TEST_NAMESERVICE_EXPIRY) { test('skipping nameservice expiry tests', () => {}); } else { /** - Running these tests requires timers to be set. In laconic2d repo run: + Running these tests requires timers to be set. In laconicd repo run: TEST_REGISTRY_EXPIRY=true ./init.sh diff --git a/src/onboarding.test.ts b/src/onboarding.test.ts index 81144e5..3f6ac4b 100644 --- a/src/onboarding.test.ts +++ b/src/onboarding.test.ts @@ -94,7 +94,7 @@ if (process.env.ONBOARDING_ENABLED !== '1') { describe('Onboarding disabled', onboardingDisabledTests); } else { /** - Running this test requires participants onboarding enabled. In laconic2d repo run: + Running this test requires participants onboarding enabled. In laconicd repo run: ONBOARDING_ENABLED=true ./init.sh -- 2.45.2 From fd993441b5b40197cc4f273c37bbb9ba8dc26329 Mon Sep 17 00:00:00 2001 From: Nabarun Date: Tue, 23 Jul 2024 09:59:41 +0530 Subject: [PATCH 2/2] Remove TODO --- .gitea/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 0bd3179..032359e 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v3 with: path: "./laconicd/" - repository: cerc-io/laconicd # TODO: Update to laconicd on repo renaming + repository: cerc-io/laconicd fetch-depth: 0 ref: main - name: Environment -- 2.45.2