ckb_ssri_std/utils/syscalls/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
// re-export to maintain compatible with old versions
pub use ckb_std::error::SysError;

#[cfg(not(feature = "native-simulator"))]
mod native;
#[cfg(not(feature = "native-simulator"))]
pub use native::*;

#[cfg(feature = "native-simulator")]
mod simulator;
#[cfg(feature = "native-simulator")]
pub use simulator::*;