-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
taper of inflation is based on epoch 0, not the inflation activation epoch #11130
Comments
assuming the network enables inflation soon, I think the fudge would probably be fine another approach could be to increase |
Yeah, I think Rob's suggestion would be fine (adjusting |
@rwalker-com @ericlwilliams I see. Thanks for checking this! Then this issue will be just simple constant changing PR. :) |
I think there's no explicit action needed here. As we finalize on the inflation rate we'll just adjust the initial values to match the desired % when inflation is activated |
Problem
taper of inflation is calculated as if the inflation was enabled since the very start of our cluster (genesis, epoch 0/slot 0). But it isn't true.
So, although initial interest rate is expected to be 15% at the start of inflation, it actually will be about ~14.28% without proper offsetting implementation:
solana/sdk/src/inflation.rs
Lines 25 to 27 in 0a7cbdf
As far as I understand the token economy correctly, I think the planned initial inflation rate should be aligned with the time when the inflation is enabled, not the time of birth of our cluster.
Proposed Solution
Make it possible to take consider of inflation activation epoch?
CC: @ericlwilliams @mvines @rwalker-com
The text was updated successfully, but these errors were encountered: