mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-15 03:33:11 +00:00
5 lines
93 B
Rust
5 lines
93 B
Rust
pub trait MemPoolItem {
|
|
type Identifier;
|
|
fn identifier(&self) -> Self::Identifier;
|
|
}
|