mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-11 17:53:12 +00:00
11 lines
190 B
Rust
11 lines
190 B
Rust
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
pub struct Message {
|
|
pub(crate) bytecode: Vec<u8>,
|
|
}
|
|
|
|
impl Message {
|
|
pub fn new(bytecode: Vec<u8>) -> Self {
|
|
Self { bytecode }
|
|
}
|
|
}
|