pub trait UniqueIdentifier {
// Required methods
fn id(&self, chain_id: &ChainId) -> Bytes32;
fn cached_id(&self) -> Option<Bytes32>;
}
Expand description
Means that transaction has a unique identifier.
pub trait UniqueIdentifier {
// Required methods
fn id(&self, chain_id: &ChainId) -> Bytes32;
fn cached_id(&self) -> Option<Bytes32>;
}
Means that transaction has a unique identifier.