From d6fa448a2dffe67e571021b3c584a458c5ca2e9f Mon Sep 17 00:00:00 2001
From: Roberto Bayardo <roberto.bayardo@coinbase.com>
Date: Thu, 5 Dec 2024 18:57:40 -0800
Subject: [PATCH] increase the transaction throttling limit to allow >99% of
 transactions (#13047)

Co-authored-by: Matthew Slipper <me@matthewslipper.com>
---
 op-batcher/flags/flags.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/op-batcher/flags/flags.go b/op-batcher/flags/flags.go
index d5681ea87234..df8eca4a612f 100644
--- a/op-batcher/flags/flags.go
+++ b/op-batcher/flags/flags.go
@@ -171,7 +171,7 @@ var (
 	ThrottleTxSizeFlag = &cli.IntFlag{
 		Name:    "throttle-tx-size",
 		Usage:   "The DA size of transactions to start throttling when we are over the throttle threshold",
-		Value:   300, // most transactions compress to under 300 bytes. TODO: compute exact distribution
+		Value:   5000, // less than 1% of all transactions should be affected by this limit
 		EnvVars: prefixEnvVars("THROTTLE_TX_SIZE"),
 	}
 	ThrottleBlockSizeFlag = &cli.IntFlag{