We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c05cc97 commit dada795Copy full SHA for dada795
runtime/src/runtime/mod.rs
@@ -24,15 +24,15 @@ pub use self::randomness::DomainSeparationTag;
24
use crate::runtime::builtins::Type;
25
use crate::ActorError;
26
27
+mod actor_code;
28
+pub mod builtins;
29
+pub mod policy;
30
+mod randomness;
31
+
32
#[cfg(feature = "fil-actor")]
33
mod actor_blockstore;
34
-pub mod builtins;
35
pub mod fvm;
-pub mod policy;
-
-mod actor_code;
-mod randomness;
36
37
/// Runtime is the VM's internal runtime object.
38
/// this is everything that is accessible to actors, beyond parameters.
0 commit comments