Skip to content

Commit 5494850

Browse files
committed
fix(BalancerV3): increase pool and rate update TTls to 2 minutes
1 parent 3e54dd1 commit 5494850

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dex/balancer-v3/balancer-v3.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ import { removeCircularStepPairs } from './utils';
3232

3333
const MAX_UINT256 =
3434
'115792089237316195423570985008687907853269984665640564039457584007913129639935';
35-
const POOL_UPDATE_TTL = 1 * 60; // 1min
36-
const RATE_UPDATE_TTL = 1 * 60; // 1min
35+
const POOL_UPDATE_TTL = 2 * 60; // 2min
36+
const RATE_UPDATE_TTL = 2 * 60; // 2min
3737
const HOOK_UPDATE_TTL = 5 * 60; // 5min
3838

3939
type DeepMutable<T> = {

0 commit comments

Comments
 (0)