pub trait RealWorldOracle {
    // Required method
    fn is_confirmed(&self) -> Option<bool>;
}Expand description
Someone who can confirm agreement execution in real world.
Required Methods§
sourcefn is_confirmed(&self) -> Option<bool>
 
fn is_confirmed(&self) -> Option<bool>
Waiting for replay from real world oracle. None -> oracle decision isn’t ready yet; Some(true) -> oracle agree with report; Some(false) -> oracle disagree with the report.