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);