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