mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 22:50:18 +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,
|
noXor = false,
|
||||||
targetType = "air",
|
targetType = "air",
|
||||||
tracing = false,
|
tracing = false,
|
||||||
noEmptyResponse = false,
|
noEmptyResponse = true,
|
||||||
}) {
|
}) {
|
||||||
return new AquaConfig(
|
return new AquaConfig(
|
||||||
logLevel,
|
logLevel,
|
||||||
|
@ -72,7 +72,7 @@ object AquaConfig {
|
|||||||
noXor = cjs.noXor.getOrElse(false),
|
noXor = cjs.noXor.getOrElse(false),
|
||||||
noRelay = cjs.noRelay.getOrElse(false),
|
noRelay = cjs.noRelay.getOrElse(false),
|
||||||
tracing = cjs.tracing.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