From 5c18820d9636d94b9d781ce45b6fa0a6beb9265b Mon Sep 17 00:00:00 2001 From: mantikoros Date: Wed, 4 May 2022 11:11:06 -0400 Subject: [PATCH] go back to $100 fixed ante --- functions/src/create-contract.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/src/create-contract.ts b/functions/src/create-contract.ts index e531e1b3..dfc8128d 100644 --- a/functions/src/create-contract.ts +++ b/functions/src/create-contract.ts @@ -81,7 +81,7 @@ export const createContract = functions .get() const isFree = userContractsCreatedTodaySnapshot.size === 0 - const ante = isFree ? 300 : FIXED_ANTE // data.ante + const ante = FIXED_ANTE // data.ante if ( ante === undefined ||