Skip to content

Commit

Permalink
chore: TZ_ENV -> TZ_NETWORK
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Diaz committed Aug 28, 2020
1 parent 14877b5 commit 0e3ab49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/components/contract_store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import Configstore from 'configstore';
import path from 'path';
import { Contract, TezosToolkit } from '@taquito/taquito';

const TZ_ENV = process.env.TZ_NETWORK || 'sandbox';
const CONFIG_NAME = `minter.${TZ_ENV}.json`;
const TZ_NETWORK = process.env.TZ_NETWORK || 'sandbox';
const CONFIG_NAME = `minter.${TZ_NETWORK}.json`;
const CONFIG_PATH = path.join(__dirname, '../../config/', CONFIG_NAME);

const configStore = new Configstore('', {}, { configPath: CONFIG_PATH });
Expand Down

0 comments on commit 0e3ab49

Please sign in to comment.