Submitted by cmichel
The CTokenMultiOracle._peek/_get function does the following computation on unsigned integers which reverts when source.decimals > 18:
Recommend instead performing this price = uint(rawPrice) * 10 ** 18 / 10 ** source.decimals;.
Note that this leads to a loss of precision and the price could end up being 0.
alcueca (Yield) acknowledged and patched:
