From ed449bf415537af0a59a4d0fb969838fa36a051a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Tue, 15 Oct 2019 01:19:01 +0100 Subject: [PATCH] grandpa: fix until imported logging arg order (#3818) --- substrate/core/finality-grandpa/src/until_imported.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/core/finality-grandpa/src/until_imported.rs b/substrate/core/finality-grandpa/src/until_imported.rs index b8568c1f85..119ecf95c5 100644 --- a/substrate/core/finality-grandpa/src/until_imported.rs +++ b/substrate/core/finality-grandpa/src/until_imported.rs @@ -175,9 +175,9 @@ impl Stream for UntilImported target: "afg", "Waiting to import block {} before {} {} messages can be imported. \ Possible fork?", - self.identifier, block_hash, v.len(), + self.identifier, ); *last_log = next_log;