Summary
unpause() shifts start_time forward by the pause duration:
let delta = now.saturating_sub(config.paused_at);
config.start_time = config.start_time.saturating_add(delta);
There is no test verifying this shift produces correct vesting amounts. If the shift is wrong, paused time would count toward vesting which is incorrect.
Tasks
Labels: testing, forge-vesting