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
This commit is contained in:
Shawn Tabrizi
2019-11-25 11:51:09 +01:00
committed by Bastian Köcher
parent 78a758bfba
commit 50b84a6438
+1 -1
View File
@@ -131,7 +131,7 @@ pub mod ed25519 {
/// The local storage database key under which the worker progress status /// The local storage database key under which the worker progress status
/// is tracked. /// 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 /// It's important to persist the worker state, since e.g. the
/// server could be restarted while starting the gossip process, but before /// server could be restarted while starting the gossip process, but before