Submitted by 0x52, also found by berndartmueller
Users of moveFundsToUpgradedContract() in migration.sol may forfeit rebase rewards.
L54 calls instantUnstake(false) meaning that it skips the optional rebase. If there is a pending rebase then the user calling the function will not get this rebase and miss out on potential rewards.
Add an input bool \_trigger then add the following code to the start of the function:
if (_trigger) {
rebase();
}
This allows users to optionally call rebase if they are concerned about losing pending rebase rewards.
0xean (Yieldy) acknowledged 
