Skip to content

Commit

Permalink
prefix processedHeights and processedTimes
Browse files Browse the repository at this point in the history
  • Loading branch information
avahowell committed Sep 29, 2023
1 parent c0056bb commit 85e5061
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/core/component/ibc/src/component/state_key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 85e5061

Please sign in to comment.