From ac672a788179206c88fb2f01ba517aa4a772f34e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Tue, 20 Aug 2019 14:14:28 +0200 Subject: [PATCH] runtime: disable grandpa offline fallback (#390) --- polkadot/runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/runtime/src/lib.rs b/polkadot/runtime/src/lib.rs index 18d3ffb2b4..eb1eb95786 100644 --- a/polkadot/runtime/src/lib.rs +++ b/polkadot/runtime/src/lib.rs @@ -429,7 +429,7 @@ parameter_types! { } impl finality_tracker::Trait for Runtime { - type OnFinalizationStalled = Grandpa; + type OnFinalizationStalled = (); type WindowSize = WindowSize; type ReportLatency = ReportLatency; }