In the commit logs I found
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nStartTime = 1456790400; // March 1st, 2016
As a (layman) reviewer I find it hard to ascertain how this integer constant came to be and whether it is correct. For all I know this could be a bug or a backdoor. IMHO this could be improved by calculating the constant at runtime in a more obviously correct way such as:
nStartTime = BLOCK_TIMESTAMP_FROM_DATE(2016, 3, 1);
This requires a suitable macro or preferrably a constexpr function.
I would request that this improvement to the source code be made in the interest of reviewability.