-
Notifications
You must be signed in to change notification settings - Fork 264
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
Fix economic system bugs. #1705
Conversation
Pull request analysis by VIZIPI Below you will find who is the most qualified team member to review your code. Reviewers with knowledge related to these changes
Potential missing files from this Pull requestfiles commonly committed with a subset of this pr, but not committed this time.
Committed file ranks |
Codecov Report
@@ Coverage Diff @@
## dev #1705 +/- ##
==========================================
- Coverage 74.46% 52.4% -22.06%
==========================================
Files 407 241 -166
Lines 18735 8964 -9771
==========================================
- Hits 13951 4698 -9253
+ Misses 4784 4266 -518
|
Codecov Report
@@ Coverage Diff @@
## dev #1705 +/- ##
=========================================
- Coverage 80.8% 39.3% -41.51%
=========================================
Files 407 312 -95
Lines 18735 14571 -4164
=========================================
- Hits 15139 5727 -9412
- Misses 3596 8844 +5248
|
Maybe this should according to date, like every July 1st we increase 2 miners.AElf/src/AElf.Contracts.Consensus.AEDPoS/ViewMethods.cs Lines 626 to 631 in d0b47a7
This comment was generated by todo based on a
|
❌ Build AElf 1.0.0.1799 failed (commit e629851498 by @EanCuznaivy) |
❌ Build AElf 1.0.0.1803 failed (commit bb1855c5d8 by @EanCuznaivy) |
ProfitsAmount = input.Amount, | ||
IsReleased = true | ||
}; | ||
} | ||
else | ||
{ | ||
releasedProfitInformation.TotalWeight = profitItem.TotalWeight; | ||
releasedProfitInformation.TotalWeight = totalWeight; | ||
releasedProfitInformation.ProfitsAmount += input.Amount; |
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.
use safe plus
No description provided.