Skip to content

Commit

Permalink
build: include FEVM-related actors (#1203)
Browse files Browse the repository at this point in the history
  • Loading branch information
arajasek authored Feb 10, 2023
1 parent 73fa977 commit c84dbf0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ fil_actor_account = { version = "10.0.0-alpha.1", path = "./actors/account", fea
fil_actor_cron = { version = "10.0.0-alpha.1", path = "./actors/cron", features = ["fil-actor"] }
fil_actor_datacap = { version = "10.0.0-alpha.1", path = "./actors/datacap", features = ["fil-actor"] }
fil_actor_ethaccount = { version = "10.0.0-alpha.1", path = "actors/ethaccount", features = ["fil-actor"] }
fil_actor_eam = { version = "10.0.0-alpha.1", path = "./actors/eam", features = ["fil-actor"] }
fil_actor_evm = { version = "10.0.0-alpha.1", path = "./actors/evm", features = ["fil-actor"] }
fil_actor_init = { version = "10.0.0-alpha.1", path = "./actors/init", features = ["fil-actor"] }
fil_actor_market = { version = "10.0.0-alpha.1", path = "./actors/market", features = ["fil-actor"] }
Expand Down
4 changes: 4 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ const ACTORS: &[(&Package, &ID)] = &[
("reward", "reward"),
("verifreg", "verifiedregistry"),
("datacap", "datacap"),
("placeholder", "placeholder"),
("evm", "evm"),
("eam", "eam"),
("ethaccount", "ethaccount"),
];

const NETWORK_ENV: &str = "BUILD_FIL_NETWORK";
Expand Down
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
/// - "reward"
/// - "system"
/// - "verifreg"
/// - "evm"
/// - "eam"
/// - "ethaccount"
/// - "placeholder"
///
/// The Filecoin client must import the contents of CAR into the blockstore, but
/// may opt to exclude the index data structure.
Expand Down

0 comments on commit c84dbf0

Please sign in to comment.