change starting balance to 100

This commit is contained in:
mantikoros 2021-12-15 16:27:57 -06:00
parent e3f4a99263
commit 4b123d47ee
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ import {
signInWithPopup, signInWithPopup,
} from 'firebase/auth' } from 'firebase/auth'
export const STARTING_BALANCE = 1000 export const STARTING_BALANCE = 100
export type User = { export type User = {
id: string id: string

View File

@ -42,7 +42,7 @@ export async function createContract(
return contract return contract
} }
export function calcSeedBets(initialProb: number, initialCapital = 1000) { export function calcSeedBets(initialProb: number, initialCapital = 100) {
const p = initialProb / 100.0 const p = initialProb / 100.0
const seedYes = const seedYes =