Struct fuel_core_interfaces::model::Message
source · pub struct Message {
pub sender: Address,
pub recipient: Address,
pub nonce: Word,
pub amount: Word,
pub data: Vec<u8>,
pub da_height: DaBlockHeight,
pub fuel_block_spend: Option<BlockHeight>,
}
Expand description
Message send from Da layer to fuel by bridge
Fields§
§sender: Address
§recipient: Address
§nonce: Word
§amount: Word
§data: Vec<u8>
§da_height: DaBlockHeight
The block height from the parent da layer that originated this message
fuel_block_spend: Option<BlockHeight>
Implementations§
Trait Implementations§
source§impl AsRef<Message> for CheckedMessage
impl AsRef<Message> for CheckedMessage
source§impl From<CheckedMessage> for Message
impl From<CheckedMessage> for Message
source§fn from(checked_message: CheckedMessage) -> Self
fn from(checked_message: CheckedMessage) -> Self
Converts to this type from the input type.