Skip to content

Commit

Permalink
feat: bump max eigenda batch size - increase MaxDecompressedLen
Browse files Browse the repository at this point in the history
  • Loading branch information
epociask committed Oct 2, 2024
1 parent ae2fe4f commit 55134f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbstate/inbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ type sequencerMessage struct {
segments [][]byte
}

const MaxDecompressedLen int = 1024 * 1024 * 16 // 16 MiB
const MaxDecompressedLen int = 1024 * 1024 * 16 * 40 // 40 MiB
const maxZeroheavyDecompressedLen = 101*MaxDecompressedLen/100 + 64
const MaxSegmentsPerSequencerMessage = 100 * 1024

Expand Down

0 comments on commit 55134f0

Please sign in to comment.