mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 14:40:17 +00:00
fix(compiler): Change noEmptyResponse
default to true
(#1093)
Change noEmptyResponse default to true
This commit is contained in:
parent
96c1675350
commit
23aba18c7d
@ -7,7 +7,7 @@ function getConfig({
|
||||
noXor = false,
|
||||
targetType = "air",
|
||||
tracing = false,
|
||||
noEmptyResponse = false,
|
||||
noEmptyResponse = true,
|
||||
}) {
|
||||
return new AquaConfig(
|
||||
logLevel,
|
||||
|
@ -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)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user