From 8d97eb6f630ad9ea68f6a5f1368e3d856ccc2e05 Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Tue, 14 Jun 2022 03:39:14 -0700 Subject: [PATCH] Remove deprecated antes --- common/antes.ts | 4 ---- web/pages/create.tsx | 1 - 2 files changed, 5 deletions(-) diff --git a/common/antes.ts b/common/antes.ts index 8247a4d2..ea41f99f 100644 --- a/common/antes.ts +++ b/common/antes.ts @@ -14,10 +14,6 @@ import { ENV_CONFIG } from './envs/constants' export const FIXED_ANTE = ENV_CONFIG.fixedAnte ?? 10 -// deprecated -export const PHANTOM_ANTE = 0.001 -export const MINIMUM_ANTE = 50 - export const HOUSE_LIQUIDITY_PROVIDER_ID = 'IPTOzEqrpkWmEzh6hwvAyY9PqFb2' // @ManifoldMarkets' id export function getCpmmInitialLiquidity( diff --git a/web/pages/create.tsx b/web/pages/create.tsx index 68393081..5c0cd61f 100644 --- a/web/pages/create.tsx +++ b/web/pages/create.tsx @@ -109,7 +109,6 @@ export function NewContract(props: { question: string }) { question.length > 0 && ante !== undefined && ante !== null && - ante >= MINIMUM_ANTE && (ante <= balance || (mustWaitForDailyFreeMarketStatus != 'loading' && !mustWaitForDailyFreeMarketStatus)) &&