-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move fil_actor_interface to forest shim #5001
base: main
Are you sure you want to change the base?
Changes from all commits
adeb5ae
208590b
5e940c4
9965212
055f405
b2491fc
4c634b4
3964ba2
7ab75fb
95b856d
15e80e9
b9de1ef
7265b64
1e329b9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ use crate::chain_sync::collect_errs; | |
use crate::metrics::HistogramTimerExt; | ||
use crate::networks::{ChainConfig, Height}; | ||
use crate::shim::actors::PowerActorStateLoad as _; | ||
use crate::shim::actors_interface::power; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It'll require a bit of reorg, but makes total sense. One less "abstraction" will hopefully lead to flattening the learning curve a bit. |
||
use crate::shim::crypto::{ | ||
cid_to_replica_commitment_v1, verify_bls_sig, TICKET_RANDOMNESS_LOOKBACK, | ||
}; | ||
|
@@ -23,7 +24,6 @@ use crate::shim::{ | |
use crate::state_manager::StateManager; | ||
use crate::utils::encoding::prover_id_from_u64; | ||
use cid::Cid; | ||
use fil_actor_interface::power; | ||
use fil_actors_shared::filecoin_proofs_api::{post, PublicReplicaInfo, SectorId}; | ||
use fil_actors_shared::v10::runtime::DomainSeparationTag; | ||
use futures::stream::FuturesUnordered; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
multihash
is re-exported fromcid
and can be accessed bycid::multihash
, let's not add it to the deps