Skip to content

Commit

Permalink
added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvja committed Oct 19, 2023
1 parent 7e0578b commit 219d301
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions solana/solana-ibc/programs/solana-ibc/src/transfer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ impl Module for SolanaIbcStorage<'_, '_> {
_channel_id: &ChannelId,
_counterparty_version: &Version,
) -> Result<ModuleExtras, ChannelError> {
// TODO(#35): Verify port_id is valid.
Ok(ModuleExtras::empty())
}

Expand All @@ -269,6 +270,7 @@ impl Module for SolanaIbcStorage<'_, '_> {
_port_id: &PortId,
_channel_id: &ChannelId,
) -> Result<ModuleExtras, ChannelError> {
// TODO(#35): Verify port_id is valid.
Ok(ModuleExtras::empty())
}

Expand All @@ -277,6 +279,7 @@ impl Module for SolanaIbcStorage<'_, '_> {
_port_id: &PortId,
_channel_id: &ChannelId,
) -> Result<ModuleExtras, ChannelError> {
// TODO(#35): Verify port_id is valid.
Ok(ModuleExtras::empty())
}

Expand All @@ -285,6 +288,7 @@ impl Module for SolanaIbcStorage<'_, '_> {
_port_id: &PortId,
_channel_id: &ChannelId,
) -> Result<ModuleExtras, ChannelError> {
// TODO(#35): Verify port_id is valid.
Ok(ModuleExtras::empty())
}
}
Expand Down

0 comments on commit 219d301

Please sign in to comment.