Submitted by bin2chen, also found by xuwinnie
The current calculation formula for secRewardsPerShare is as follows:
marketSupply is cNOTE, with a precision of 1e18
So as long as the supply is greater than 1 cNote, secRewardsPerShare is easily rounded down to 0
Example:
marketSupply = 10e18
blockDelta = 1
secRewardsPerShare=1 *  1e18 / 10e18 = 0
Due to insufficient precision, secRewardsPerShare will basically be 0.
It is recommended to use 1e27 for secRewardsPerShare:
Alex the Entreprenerd (Judge) commented:
OpenCoreCH (sponsor) confirmed
