Skip to content

Commit

Permalink
Merge pull request onflow#5995 from onflow/jord/script-check-default
Browse files Browse the repository at this point in the history
Disable script checking by default
  • Loading branch information
franklywatson authored Jun 3, 2024
2 parents 7029607 + 50eb907 commit bcca163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/collection/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func main() {
"maximum per-transaction byte size")
flags.Uint64Var(&ingestConf.MaxCollectionByteSize, "ingest-max-col-byte-size", flow.DefaultMaxCollectionByteSize,
"maximum per-collection byte size")
flags.BoolVar(&ingestConf.CheckScriptsParse, "ingest-check-scripts-parse", true,
flags.BoolVar(&ingestConf.CheckScriptsParse, "ingest-check-scripts-parse", false,
"whether we check that inbound transactions are parse-able")
flags.UintVar(&ingestConf.ExpiryBuffer, "ingest-expiry-buffer", 30,
"expiry buffer for inbound transactions")
Expand Down

0 comments on commit bcca163

Please sign in to comment.