-
Notifications
You must be signed in to change notification settings - Fork 83
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
fip-0100: update the daily sector fee on extension when zero #1629
base: feat/fip-0100
Are you sure you want to change the base?
Conversation
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.
yeah ok, but this really does need to be made clear in the FIP
actors/miner/src/lib.rs
Outdated
key | ||
)); | ||
} | ||
deadline_daily_fee_delta += &partition_daily_fee_delta; // non-zero when extending legacy sectors |
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.
nit: by legacy here you mean pre-fee sectors, something different than ExtensionKind::ExtendCommittmentLegacy
. Clarifying this avoids some confusion
81925bc
to
45ca648
Compare
c1184db
to
3c02c1e
Compare
When, on extension, we encounter a legacy sector with a zero fee, update it based on the current circulating supply.
3c02c1e
to
fd6ac02
Compare
@rvagg : I haven't had a chance to read filecoin-project/FIPs#1124 yet. Does it cover the relevant FIP updates for this PR? |
Yes, this has been covered in filecoin-project/FIPs#1124, along with additional things mentioned in issues in this repo (such as replica updates for legacy sectors which is very similar to this one). |
When, on extension, we encounter a legacy sector with a zero fee, update it based on the current circulating supply.
fixes #1634