Skip to content

Commit

Permalink
patch to a temp bactors branch
Browse files Browse the repository at this point in the history
  • Loading branch information
alexytsu committed Jul 6, 2023
1 parent 7fc3a4b commit 23a7f84
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion testing/integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ serde = { version = "1.0", features = ["derive"] }
serde_tuple = { version = "0.5.0" }

[dev-dependencies]
actors-v10 = { package = "fil_builtin_actors_bundle", git = "https://github.com/filecoin-project/builtin-actors", rev = "09aa10f082565565b08572532b245236525f778c" }
actors-v12 = { package = "fil_builtin_actors_bundle", git = "https://github.com/filecoin-project/builtin-actors", branch="alex/update-fvm" }
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 @@ -60,7 +60,7 @@ pub fn load_actor_wasm(path: &str) -> Vec<u8> {
/// Construct a Tester with the provided blockstore
/// 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_v10::BUNDLE_CAR).unwrap();
let bundle_root = bundle::import_bundle(&blockstore, actors_v12::BUNDLE_CAR).unwrap();

Tester::new(NetworkVersion::V18, 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_v10::BUNDLE_CAR).unwrap();
let bundle_root = bundle::import_bundle(&blockstore, actors_v12::BUNDLE_CAR).unwrap();
let mut tester =
Tester::new(NetworkVersion::V18, StateTreeVersion::V5, bundle_root, blockstore.clone())
.unwrap();
Expand Down

0 comments on commit 23a7f84

Please sign in to comment.