From 660386df7fa1ec0f884ee4255d41dbcbf6d85a86 Mon Sep 17 00:00:00 2001 From: flaque Date: Tue, 18 Mar 2025 21:45:52 -0700 Subject: [PATCH] add 1c --- src/lib/buy/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/buy/index.tsx b/src/lib/buy/index.tsx index b75358aa..5aa12a60 100644 --- a/src/lib/buy/index.tsx +++ b/src/lib/buy/index.tsx @@ -195,6 +195,8 @@ function QuoteAndBuy(props: { options: SfBuyOptions }) { } pricePerGpuHour = getPricePerGpuHourFromQuote(quote); + // Add 1 cent to price to make order more likely to fill + pricePerGpuHour += 1; startAt = parseStartDateOrNow(quote.start_at);