Skip to content

Commit 593449d

Browse files
elmatticarajaseklemmih
authored
Market actor unit tests (part 4) (#252)
Co-authored-by: Aayush Rajasekaran <[email protected]> Co-authored-by: David Himmelstrup <[email protected]>
1 parent f32e7fd commit 593449d

File tree

5 files changed

+576
-6
lines changed

5 files changed

+576
-6
lines changed

Cargo.lock

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

actors/market/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ libipld-core = { version = "0.13.1", features = ["serde-codec"] }
3131

3232
[dev-dependencies]
3333
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] }
34+
fil_actor_power = { version = "8.0.0-alpha.1", path = "../power" }
35+
fil_actor_reward = { version = "8.0.0-alpha.1", path = "../reward" }
36+
fil_actor_verifreg = { version = "8.0.0-alpha.1", path = "../verifreg" }
3437
fvm_ipld_amt = { version = "0.4.0", features = ["go-interop"] }
38+
multihash = { version = "0.16.1", default-features = false }
3539
[features]
3640
fil-actor = []
3741

actors/market/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub mod balance_table; // export for testing
3939
mod deal;
4040
#[doc(hidden)]
4141
pub mod ext; // export for testing
42-
mod policy;
42+
pub mod policy; // export for testing
4343
mod state;
4444
mod types;
4545

0 commit comments

Comments
 (0)