Submitted by gpersoon, also found by shw
In function _get of CompositeMultiOracle the updateTime is not initialized, so it will be 0.
Function _get has the following statement:
So this means the function get will always return updateTime==0
The updateTime result of the function get doesnt seem to be used in the code so the risk is low. If would only be relevant for future code updates.
Recommend adding the following in the beginning of the _get function:
updateTime = block.timestamp;
alcueca (Yield) confirmed and patched:
