You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// The struct contains results of gas calculation required to process/// a message.#[derive(Clone,Debug,Decode,Encode,PartialEq,Eq,TypeInfo)]#[cfg_attr(feature = "std", derive(serde::Deserialize, serde::Serialize))]pubstructGasInfo{/// Represents minimum gas limit required for execution.pubmin_limit:u64,/// Gas amount that we reserve for some other on-chain interactions.pubreserved:u64,/// Contains number of gas burned during message processing.pubburned:u64,/// The value may be returned if a program happens to be executed/// the second or next time in a block.pubmay_be_returned:u64,/// Was the message placed into waitlist at the end of calculating.////// This flag shows, that `min_limit` makes sense and have some guarantees/// only before insertion into waitlist.pubwaited:bool,}
Originally posted by @breathx in #2979 (comment)
The text was updated successfully, but these errors were encountered: