Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/authority_discovery/publisher/address_publisher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace kagome::authority_discovery {
constexpr std::chrono::hours kIntervalMax{1};

// TODO(kamilsa): #2351, remove this variable when resolved
constexpr bool kAudiDisableTimestamp = true;
constexpr bool kAudiDisableTimestamp = false;

static const metrics::GaugeHelper metric_amount_addresses_last_published{
"kagome_authority_discovery_amount_external_addresses_last_published",
Expand Down
2 changes: 1 addition & 1 deletion core/runtime/wasm_edge/module_factory_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ namespace kagome::runtime::wasm_edge {
OUTCOME_TRY(configure_ctx, configureCtx(config));
auto configure_ctx_raw = configure_ctx.raw();
WasmEdge_ConfigureCompilerSetOptimizationLevel(
configure_ctx_raw, WasmEdge_CompilerOptimizationLevel_O0);
configure_ctx_raw, WasmEdge_CompilerOptimizationLevel_O2);

CompilerContext compiler = WasmEdge_CompilerCreate(configure_ctx_raw);
SL_INFO(log_, "Start compiling wasm module {}", path_compiled);
Expand Down
Loading