From 7717b11fb2ad8b2f9b8886504a3704df5edfd0bc Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Fri, 6 Sep 2024 12:17:25 +0530 Subject: [PATCH] Move chain id constant to test helpers --- src/constants.ts | 2 -- src/testing/helper.ts | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/constants.ts b/src/constants.ts index f0c5654..a54157d 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,4 +1,2 @@ export const DENOM = 'alnt'; -export const DEFAULT_CHAIN_ID = 'laconic_9000-1'; - export const DEFAULT_GAS_ESTIMATION_MULTIPLIER = 2; diff --git a/src/testing/helper.ts b/src/testing/helper.ts index ed8a1e5..8324402 100644 --- a/src/testing/helper.ts +++ b/src/testing/helper.ts @@ -3,7 +3,8 @@ import yaml from 'node-yaml'; import semver from 'semver'; import { Account } from '../index'; -import { DEFAULT_CHAIN_ID } from '../constants'; + +const DEFAULT_CHAIN_ID = 'laconic_9000-1'; export const ensureUpdatedConfig = async (path: string) => { const conf = await yaml.read(path);