-
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?
Conversation
08ae10f
to
adeb5ae
Compare
@@ -121,6 +122,7 @@ lru = "0.12" | |||
memmap2 = "0.9" | |||
memory-stats = "1" | |||
multiaddr = "0.18" | |||
multihash = { version = "0.18", features = ["identity"] } |
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 from cid
and can be accessed by cid::multihash
, let's not add it to the deps
@@ -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 comment
The reason will be displayed to describe this comment to others. Learn more.
_iterface
looks redundant when it's under shim
, what do you think?
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.
It'll require a bit of reorg, but makes total sense. One less "abstraction" will hopefully lead to flattening the learning curve a bit.
Summary of changes
Changes introduced in this pull request:
fil_actor_interface
from fil-actor-states toshim/actors_interface
Reference issue to close (if applicable)
Closes #4875
Other information and links
Change checklist