Skip to content

Commit

Permalink
and make it compile
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Nov 21, 2024
1 parent cabd733 commit 372de55
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ cid = { version = "0.11.1", default-features = false, features = [
] }
fvm = { version = "~4.5", default-features = false }
fvm_integration_tests = "~4.5"
fvm_ipld_amt = "0.7.2"
fvm_ipld_amt = "0.7.3"
fvm_ipld_bitfield = "0.7.0"
fvm_ipld_blockstore = "0.3.0"
fvm_ipld_encoding = "0.5.0"
Expand Down
2 changes: 1 addition & 1 deletion testing/integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ serde = { workspace = true }
serde_tuple = { workspace = true }

[dev-dependencies]
actors-v12 = { package = "fil_builtin_actors_bundle", git = "https://github.com/filecoin-project/builtin-actors", branch = "fvm-next" }
actors = { package = "fil_builtin_actors_bundle", git = "https://github.com/filecoin-project/builtin-actors", branch = "steb/update-multihash" }
helix_test_actors = { path = "../test_actors" }
token_impl = { path = "../test_actors/actors/frc46_factory_token/token_impl" }
2 changes: 1 addition & 1 deletion testing/integration/tests/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pub fn load_actor_wasm(path: &str) -> Vec<u8> {
/// This mainly cuts down on noise with importing the built-in actor bundle and network/state tree
/// versions.
pub fn construct_tester<BS: Blockstore + Clone, E: Externs>(blockstore: &BS) -> Tester<BS, E> {
let bundle_root = bundle::import_bundle(&blockstore, actors_v12::BUNDLE_CAR).unwrap();
let bundle_root = bundle::import_bundle(&blockstore, actors::BUNDLE_CAR).unwrap();

Tester::new(NetworkVersion::V21, StateTreeVersion::V5, bundle_root, blockstore.clone()).unwrap()
}
Expand Down
2 changes: 1 addition & 1 deletion testing/integration/tests/frc46_tokens.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub struct MintParams {
#[test]
fn it_mints_tokens() {
let blockstore = MemoryBlockstore::default();
let bundle_root = bundle::import_bundle(&blockstore, actors_v12::BUNDLE_CAR).unwrap();
let bundle_root = bundle::import_bundle(&blockstore, actors::BUNDLE_CAR).unwrap();
let mut tester =
Tester::new(NetworkVersion::V21, StateTreeVersion::V5, bundle_root, blockstore.clone())
.unwrap();
Expand Down

0 comments on commit 372de55

Please sign in to comment.