Skip to content

Commit

Permalink
Rename Rcpt to ReceiptTy
Browse files Browse the repository at this point in the history
  • Loading branch information
emhane committed Nov 19, 2024
1 parent 2f1ad07 commit 8078e8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/primitives-traits/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ pub use size::InMemorySize;

/// Node traits
pub mod node;
pub use node::{FullNodePrimitives, NodePrimitives, Rcpt};
pub use node::{FullNodePrimitives, NodePrimitives, ReceiptTy};

/// Helper trait that requires arbitrary implementation if the feature is enabled.
#[cfg(any(feature = "test-utils", feature = "arbitrary"))]
Expand Down
2 changes: 1 addition & 1 deletion crates/primitives-traits/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ where
}

/// Helper adapter type for accessing [`NodePrimitives`] receipt type.
pub type Rcpt<N> = <N as NodePrimitives>::Receipt;
pub type ReceiptTy<N> = <N as NodePrimitives>::Receipt;

0 comments on commit 8078e8e

Please sign in to comment.