From 4aa8c5621237746226d6575b3abba3fd7dae45fc Mon Sep 17 00:00:00 2001 From: Tyler <48813565+technicallyty@users.noreply.github.com> Date: Wed, 14 Aug 2024 08:01:55 -0700 Subject: [PATCH] chore: change polymarket's priceAdjustmentMin from 0.00001 to 0.0001 (#670) --- providers/apis/polymarket/api_handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/apis/polymarket/api_handler.go b/providers/apis/polymarket/api_handler.go index 71b4708f4..22613d99c 100644 --- a/providers/apis/polymarket/api_handler.go +++ b/providers/apis/polymarket/api_handler.go @@ -21,7 +21,7 @@ const ( URL = "https://clob.polymarket.com/markets/%s" // priceAdjustmentMin is the value the price gets set to in the event of price == 0. - priceAdjustmentMin = 0.00001 + priceAdjustmentMin = 0.0001 ) var _ types.PriceAPIDataHandler = (*APIHandler)(nil)