mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-03-24 03:03:09 +00:00
7 lines
154 B
Rust
7 lines
154 B
Rust
|
|
use serde::{Deserialize, Serialize};
|
||
|
|
|
||
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||
|
|
pub enum Message {
|
||
|
|
L2BlockFinalized { l2_block_height: u64 },
|
||
|
|
}
|