Skip to content

Commit dada795

Browse files
authored
fix: non-fil-actor-compile (#571)
Fix compile when not compiling as a "fil actor" (e.g., for testing).
1 parent c05cc97 commit dada795

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

runtime/src/runtime/mod.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ pub use self::randomness::DomainSeparationTag;
2424
use crate::runtime::builtins::Type;
2525
use crate::ActorError;
2626

27+
mod actor_code;
28+
pub mod builtins;
29+
pub mod policy;
30+
mod randomness;
31+
2732
#[cfg(feature = "fil-actor")]
2833
mod actor_blockstore;
2934
#[cfg(feature = "fil-actor")]
30-
pub mod builtins;
3135
pub mod fvm;
32-
pub mod policy;
33-
34-
mod actor_code;
35-
mod randomness;
3636

3737
/// Runtime is the VM's internal runtime object.
3838
/// this is everything that is accessible to actors, beyond parameters.

0 commit comments

Comments
 (0)