Skip to content

Commit 420125e

Browse files
committed
Change "--inline-limit" default to 32.
License: MIT Signed-off-by: Kevin Atkinson <[email protected]>
1 parent b0f90e3 commit 420125e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/commands/add.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ You can now check what blocks have been created by:
124124
cmdkit.IntOption(cidVersionOptionName, "CID version. Defaults to 0 unless an option that depends on CIDv1 is passed. (experimental)"),
125125
cmdkit.StringOption(hashOptionName, "Hash function to use. Implies CIDv1 if not sha2-256. (experimental)").WithDefault("sha2-256"),
126126
cmdkit.BoolOption(inlineOptionName, "Inline small blocks into CIDs. (experimental)"),
127-
cmdkit.IntOption(inlineLimitOptionName, "Maximum block size to inline. (experimental)").WithDefault(64),
127+
cmdkit.IntOption(inlineLimitOptionName, "Maximum block size to inline. (experimental)").WithDefault(32),
128128
},
129129
PreRun: func(req *cmds.Request, env cmds.Environment) error {
130130
quiet, _ := req.Options[quietOptionName].(bool)

0 commit comments

Comments
 (0)