From e1668f580900f8a7a483651aa94e1d5f0d827f86 Mon Sep 17 00:00:00 2001 From: bgallois <benjamin@gallois.cc> Date: Fri, 1 Mar 2024 15:49:41 +0100 Subject: [PATCH] fix https://git.duniter.org/nodes/rust/duniter-v2s/-/issues/207 --- client/distance/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/distance/src/lib.rs b/client/distance/src/lib.rs index b27dd5f6e..7cb3b69e0 100644 --- a/client/distance/src/lib.rs +++ b/client/distance/src/lib.rs @@ -67,9 +67,9 @@ where frame_support::storage::storage_prefix( b"Distance", match session_index { - 0 => b"StoragePublishedResults1", - 1 => b"StoragePublishedResults2", - 2 => b"StoragePublishedResults0", + 0 => b"EvaluationPool0", + 1 => b"EvaluationPool1", + 2 => b"EvaluationPool2", _ => unreachable!("n%3<3"), }, ) -- GitLab