From dacd41740b8d9a6939b1d75c9f86623d30a97581 Mon Sep 17 00:00:00 2001 From: Ava Howell Date: Fri, 29 Sep 2023 10:38:36 -0700 Subject: [PATCH] prefix processedHeights and processedTimes --- crates/core/component/ibc/src/component/state_key.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/core/component/ibc/src/component/state_key.rs b/crates/core/component/ibc/src/component/state_key.rs index d8e2f2837c..cdd7a5ff05 100644 --- a/crates/core/component/ibc/src/component/state_key.rs +++ b/crates/core/component/ibc/src/component/state_key.rs @@ -11,10 +11,10 @@ pub fn ibc_params() -> &'static str { // these are internal helpers that are used by penumbra-ibc, but not part of the IBC spec (that is, // counterparties don't expect to verify proofs about them) pub fn client_processed_heights(client_id: &ClientId, height: &Height) -> String { - format!("clients/{client_id}/processedHeights/{height}") + format!("ibc/clients/{client_id}/processedHeights/{height}") } pub fn client_processed_times(client_id: &ClientId, height: &Height) -> String { - format!("clients/{client_id}/processedTimes/{height}") + format!("ibc/clients/{client_id}/processedTimes/{height}") } pub fn counter() -> &'static str { "ibc/connection_counter"