updated changelogs

This commit is contained in:
Greg Hysen
2019-09-05 12:29:39 -07:00
parent 24e62feadf
commit 49baafadc1
3 changed files with 9 additions and 1 deletions

View File

@@ -29,6 +29,10 @@
{
"note": "New stake management mechanics. Delay before delegation. Nixed shadow rewards.",
"pr": 2118
},
{
"note": "Tests for new stake management mechanics.",
"pr": 2126
}
]
}

View File

@@ -44,7 +44,7 @@ export class FinalizerActor extends BaseActor {
const operatorShareByPoolId = await this._getOperatorShareByPoolIdAsync(this._poolIds);
const rewardVaultBalanceByPoolId = await this._getRewardVaultBalanceByPoolIdAsync(this._poolIds);
const memberBalancesByPoolId = await this._getMemberBalancesByPoolIdAsync(this._membersByPoolId);
// compute expecnted changes
// compute expected changes
const expectedRewardVaultBalanceByPoolId = await this._computeExpectedRewardVaultBalanceAsyncByPoolIdAsync(
rewards,
rewardVaultBalanceByPoolId,

View File

@@ -85,6 +85,10 @@
{
"note": "Add `EthVaultNotSetError, `RewardVaultNotSetError`, and `InvalidStakeStatusError` to error registry.",
"pr": 2118
},
{
"note": "Add `InvalidStakeStatusError` to error registry.",
"pr": 2126
}
]
},