fix(compiler): Change noEmptyResponse default to true (#1093)

Change noEmptyResponse default to true
This commit is contained in:
InversionSpaces 2024-02-29 09:38:37 +01:00 committed by GitHub
parent 96c1675350
commit 23aba18c7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ function getConfig({
noXor = false,
targetType = "air",
tracing = false,
noEmptyResponse = false,
noEmptyResponse = true,
}) {
return new AquaConfig(
logLevel,

View File

@ -72,7 +72,7 @@ object AquaConfig {
noXor = cjs.noXor.getOrElse(false),
noRelay = cjs.noRelay.getOrElse(false),
tracing = cjs.tracing.getOrElse(false),
noEmptyResponse = cjs.noEmptyResponse.getOrElse(false)
noEmptyResponse = cjs.noEmptyResponse.getOrElse(true)
)
}
}