wasm: turn off debug features

This commit is contained in:
Brian Carroll 2022-07-04 12:13:10 +01:00
parent fdc0851883
commit f4ed7e086e
No known key found for this signature in database
GPG key ID: 9CF4E3BF9C4722C7

View file

@ -270,6 +270,6 @@ pub const DEBUG_SETTINGS: WasmDebugSettings = WasmDebugSettings {
let_stmt_ir: false && cfg!(debug_assertions),
instructions: false && cfg!(debug_assertions),
storage_map: false && cfg!(debug_assertions),
keep_test_binary: true && cfg!(debug_assertions),
keep_test_binary: false && cfg!(debug_assertions),
skip_dead_code_elim: false && cfg!(debug_assertions),
};