Skip to content
This repository has been archived by the owner on Jun 24, 2024. It is now read-only.

Commit

Permalink
add required trait bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbguy committed May 21, 2024
1 parent ed0cf79 commit 2086b65
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion modules/sov-ibc/src/codec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ where
}
}

impl<Raw> StateCodec for ProtobufCodec<Raw> {
impl<Raw> StateCodec for ProtobufCodec<Raw>
where
Raw: Default + Clone + Send + Sync + 'static,
{
type KeyCodec = BorshCodec;

type ValueCodec = Self;
Expand Down

0 comments on commit 2086b65

Please sign in to comment.