pub trait MessageInfo {
    fn caller(&self) -> &Address;
fn receiver(&self) -> &Address;
fn value_received(&self) -> &TokenAmount; }
Expand description

Message information available to the actor about executing message.

Required methods

The address of the immediate calling actor. Always an ID-address.

The address of the actor receiving the message. Always an ID-address.

The value attached to the message being processed, implicitly added to current_balance() before method invocation.

Implementors