From d904a72fdc80ee3b3e8dc0eea0cf1b1bf610389f Mon Sep 17 00:00:00 2001 From: Rhys Bartels-Waller Date: Mon, 12 Oct 2020 15:11:17 +1100 Subject: [PATCH] fix: typo in missing config error message --- packages/server/src/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/server/src/config.ts b/packages/server/src/config.ts index 2ae60582..2aeb32ce 100644 --- a/packages/server/src/config.ts +++ b/packages/server/src/config.ts @@ -32,8 +32,8 @@ export async function getConfig (): Promise { if (!hasuraUri && !genesisFileShelley) { throw new MissingConfig( - `You have not provided configuration to load an API segment. Either set HASURA_URI or - GENESIS_FILE_SHELLEY and GENESIS_FILE_SHELLEY` + `You have not provided configuration to load an API segment. Set HASURA_URI and/or + GENESIS_FILE_BYRON and GENESIS_FILE_SHELLEY` ) } if (!postgresDbFile && !postgresDb) {