From 50b84a6438c0f82473db36186a96313f56cae785 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Mon, 25 Nov 2019 11:51:09 +0100 Subject: [PATCH] Remove `frame/` prefix from `im_online` DB_KEY. (#4191) * Remove `frame/` prefix from `im_online` DB_KEY. Caught in the renaming process. It is not obvious to me why `frame/` or `palette/` or `srml/` was included in the DB key. * Update lib.rs --- substrate/frame/im-online/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/frame/im-online/src/lib.rs b/substrate/frame/im-online/src/lib.rs index 467596233b..01ebde206e 100644 --- a/substrate/frame/im-online/src/lib.rs +++ b/substrate/frame/im-online/src/lib.rs @@ -131,7 +131,7 @@ pub mod ed25519 { /// The local storage database key under which the worker progress status /// is tracked. -const DB_KEY: &[u8] = b"frame/im-online-worker-status"; +const DB_KEY: &[u8] = b"parity/im-online-worker-status"; /// It's important to persist the worker state, since e.g. the /// server could be restarted while starting the gossip process, but before