Got build to work after rebase

This commit is contained in:
Greg Hysen
2019-09-05 12:07:33 -07:00
parent 5ac4c72f1a
commit 67079d96af
2 changed files with 1 additions and 2 deletions

View File

@@ -248,7 +248,7 @@ contract MixinExchangeFees is
activePools[i].feesCollected,
totalFeesCollected,
totalWeightedStake != 0 ? activePools[i].weightedStake : 1, // only rewards are accounted for if no one has staked
totalWeightedStake != 0 ? totalWeightedStake : 1 // this is to avoid divide-by-zero in cobb douglas
totalWeightedStake != 0 ? totalWeightedStake : 1, // this is to avoid divide-by-zero in cobb douglas
cobbDouglasAlphaNumerator,
cobbDouglasAlphaDenomintor
);