change starting balance to 100
This commit is contained in:
parent
e3f4a99263
commit
4b123d47ee
|
@ -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
|
||||||
|
|
|
@ -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 =
|
||||||
|
|
Loading…
Reference in New Issue
Block a user