1
2
3
4
5
6
7
8
9
10
11
//! This crate provides a host environment for the livenet.
pub mod livenet_contract_env;
pub mod livenet_host;
use livenet_host::LivenetHost;
use odra_core::host::HostEnv;

/// Returns a host environment for the livenet.
pub fn env() -> HostEnv {
    let env = LivenetHost::new();
    HostEnv::new(env)
}