5 lines
93 B
Rust
Raw Normal View History

2024-10-07 13:35:29 +03:00
pub trait MemPoolItem {
type Identifier;
fn identifier(&self) -> Self::Identifier;
}