Skip to content

Commit b2f991a

Browse files
committed
update throughout
1 parent 66ecd83 commit b2f991a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

da/cmd/local-da/local.go

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

2020
// DefaultMaxBlobSize is the default max blob size
21-
const DefaultMaxBlobSize uint64 = 64 * 64 * 481 // 1970176
21+
const DefaultMaxBlobSize uint64 = 2 * 1024 * 1024 // 2MB
2222

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

da/jsonrpc/proxy_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const (
3030

3131
testMaxBlobSize = 100
3232

33-
DefaultMaxBlobSize = 1.5 * 1024 * 1024 // 1.5MB
33+
DefaultMaxBlobSize = 2 * 1024 * 1024 // 2MB
3434
)
3535

3636
// testNamespace is a 15-byte namespace that will be hex encoded to 30 chars and truncated to 29

pkg/cmd/run_node.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/evstack/ev-node/pkg/signer/file"
2727
)
2828

29-
const DefaultMaxBlobSize = 1.5 * 1024 * 1024 // 1.5MB
29+
const DefaultMaxBlobSize = 2 * 1024 * 1024 // 2MB
3030

3131
// ParseConfig is an helpers that loads the node configuration and validates it.
3232
func ParseConfig(cmd *cobra.Command) (rollconf.Config, error) {

0 commit comments

Comments
 (0)