Skip to content

Commit de67ecf

Browse files
committed
lower max blob
1 parent 4ff727d commit de67ecf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

block/internal/common/consts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package common
22

3-
const DefaultMaxBlobSize = 8 * 1024 * 1024 // 8MB fallback blob size limit
3+
const DefaultMaxBlobSize = 7 * 1024 * 1024 // 7MB fallback blob size limit

test/testda/dummy.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
)
1212

1313
const (
14-
// DefaultMaxBlobSize is the default maximum blob size (8MB).
15-
DefaultMaxBlobSize = 8 * 1024 * 1024
14+
// DefaultMaxBlobSize is the default maximum blob size (7MB).
15+
DefaultMaxBlobSize = 7 * 1024 * 1024
1616
)
1717

1818
// Header contains DA layer header information for a given height.

tools/local-da/local.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
)
2020

2121
// DefaultMaxBlobSize is the default max blob size
22-
const DefaultMaxBlobSize uint64 = 8 * 1024 * 1024 // 8MB
22+
const DefaultMaxBlobSize uint64 = 7 * 1024 * 1024 // 7MB
2323

2424
// LocalDA is a simple implementation of in-memory DA. Not production ready! Intended only for testing!
2525
//

0 commit comments

Comments
 (0)