File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11package common
22
3- const DefaultMaxBlobSize = 8 * 1024 * 1024 // 8MB fallback blob size limit
3+ const DefaultMaxBlobSize = 7 * 1024 * 1024 // 7MB fallback blob size limit
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ import (
1111)
1212
1313const (
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.
Original file line number Diff line number Diff 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//
You can’t perform that action at this time.
0 commit comments