From 66841a800e1b7e3bf5c1c99baa32de2280f90993 Mon Sep 17 00:00:00 2001 From: Haris Angelidakis <64154020+harisang@users.noreply.github.com> Date: Sun, 2 Jun 2024 19:15:07 +0300 Subject: [PATCH] Increase buffer value test threshold (#110) This PR increases the threshold for alerts in the buffers value test. The test is meant mostly as a monitoring/logging test so having a relatively low value doesn't make much sense. --- src/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.py b/src/constants.py index e9302ef..0b656da 100644 --- a/src/constants.py +++ b/src/constants.py @@ -29,7 +29,7 @@ BUFFER_INTERVAL = 150 # threshold of value of buffers above which an alert is generated -BUFFERS_VALUE_USD_THRESHOLD = 200000 +BUFFERS_VALUE_USD_THRESHOLD = 400000 # threshold parameter to generate an alert when receiving kickbacks KICKBACKS_ALERT_THRESHOLD = 0.5