Skip to content

Commit

Permalink
filler: make MAX_MAKERS_PER_FILL equal to 6
Browse files Browse the repository at this point in the history
  • Loading branch information
crispheaney committed Dec 22, 2023
1 parent 9fd8b71 commit 2de1c51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bots/filler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const FILL_ORDER_BACKOFF = 2000; // the time to wait before trying to a node in
const THROTTLED_NODE_SIZE_TO_PRUNE = 10; // Size of throttled nodes to get to before pruning the map
const TRIGGER_ORDER_COOLDOWN_MS = 1000; // the time to wait before trying to a node in the triggering map again
const MAX_COMPUTE_UNIT_PRICE_MICRO_LAMPORTS = 10000; // cap the computeUnitPrice to pay per fill tx
const MAX_MAKERS_PER_FILL = 20; // max number of unique makers to include per fill
const MAX_MAKERS_PER_FILL = 6; // max number of unique makers to include per fill

const SETTLE_PNL_CHUNKS = 4;
const MAX_POSITIONS_PER_USER = 8;
Expand Down

0 comments on commit 2de1c51

Please sign in to comment.