Skip to content

Commit

Permalink
chore: further touch up
Browse files Browse the repository at this point in the history
  • Loading branch information
Farhad-Shabani committed Nov 23, 2023
1 parent 16bdeda commit 1b5a9fc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ibc-core/ics24-host/cosmos/src/utils.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use ibc_app_transfer_types::VERSION;
use ibc_core_host_types::identifiers::{ChannelId, PortId};
pub use ibc_primitives::prelude::*;
use ibc_primitives::prelude::*;
use sha2::{Digest, Sha256};

/// Helper function to generate an escrow address for a given port and channel
Expand Down
8 changes: 8 additions & 0 deletions ibc-core/ics25-handler/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
//! entry points are responsible for processing incoming IBC messages,
//! performing validation, and execution logics by invoking the appropriate
//! module handler.
//!
//! When processing a given message `M`, if any method in this library returns
//! an error, the runtime is expected to rollback all state modifications made
//! to the context (e.g.
//! [`ExecutionContext`](crate::core::host::ExecutionContext)) while processing

Check failure on line 9 in ibc-core/ics25-handler/src/lib.rs

View workflow job for this annotation

GitHub Actions / doc_no_default_features

unresolved link to `crate::core::host::ExecutionContext`

Check failure on line 9 in ibc-core/ics25-handler/src/lib.rs

View workflow job for this annotation

GitHub Actions / doc_all_features

unresolved link to `crate::core::host::ExecutionContext`
//! `M`. If a transaction on your blockchain contains multiple messages, then
//! typically the state modifications from all messages is expected to be rolled
//! back as well.
#![no_std]
#![forbid(unsafe_code)]
#![cfg_attr(not(test), deny(clippy::unwrap_used))]
Expand Down
8 changes: 0 additions & 8 deletions ibc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,6 @@
//! This is the part of the protocol that abstracts away the core protocol and
//! focuses solely on business logic.
//!
//! When processing a given message `M`, if any method in this library returns
//! an error, the runtime is expected to rollback all state modifications made
//! to the context (e.g.
//! [`ExecutionContext`](crate::core::host::ExecutionContext)) while processing
//! `M`. If a transaction on your blockchain contains multiple messages, then
//! typically the state modifications from all messages is expected to be rolled
//! back as well.
//!
//! [ibc-standard]: https://github.com/cosmos/ibc
//! [ibc-rs]: https://github.com/cosmos/ibc-rs
Expand Down

0 comments on commit 1b5a9fc

Please sign in to comment.