Skip to content

Commit c84dbf0

Browse files
authored
build: include FEVM-related actors (#1203)
1 parent 73fa977 commit c84dbf0

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ fil_actor_account = { version = "10.0.0-alpha.1", path = "./actors/account", fea
1717
fil_actor_cron = { version = "10.0.0-alpha.1", path = "./actors/cron", features = ["fil-actor"] }
1818
fil_actor_datacap = { version = "10.0.0-alpha.1", path = "./actors/datacap", features = ["fil-actor"] }
1919
fil_actor_ethaccount = { version = "10.0.0-alpha.1", path = "actors/ethaccount", features = ["fil-actor"] }
20+
fil_actor_eam = { version = "10.0.0-alpha.1", path = "./actors/eam", features = ["fil-actor"] }
2021
fil_actor_evm = { version = "10.0.0-alpha.1", path = "./actors/evm", features = ["fil-actor"] }
2122
fil_actor_init = { version = "10.0.0-alpha.1", path = "./actors/init", features = ["fil-actor"] }
2223
fil_actor_market = { version = "10.0.0-alpha.1", path = "./actors/market", features = ["fil-actor"] }

build.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ const ACTORS: &[(&Package, &ID)] = &[
2626
("reward", "reward"),
2727
("verifreg", "verifiedregistry"),
2828
("datacap", "datacap"),
29+
("placeholder", "placeholder"),
30+
("evm", "evm"),
31+
("eam", "eam"),
32+
("ethaccount", "ethaccount"),
2933
];
3034

3135
const NETWORK_ENV: &str = "BUILD_FIL_NETWORK";

src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
/// - "reward"
1818
/// - "system"
1919
/// - "verifreg"
20+
/// - "evm"
21+
/// - "eam"
22+
/// - "ethaccount"
23+
/// - "placeholder"
2024
///
2125
/// The Filecoin client must import the contents of CAR into the blockstore, but
2226
/// may opt to exclude the index data structure.

0 commit comments

Comments
 (0)