chio-wasm-guards 0.1.2

WASM guard runtime for Chio -- load and execute .wasm guard modules with fuel metering
1
2
3
4
5
6
7
8
use crate::epoch::EpochId;

#[derive(Debug, Clone)]
pub(crate) struct LastEvaluationEvidence {
    pub(crate) epoch_id: EpochId,
    pub(crate) manifest_sha256: Option<String>,
    pub(crate) fuel_consumed: Option<u64>,
}