Related: #2565
Instead of waiting for verification of the block to finish during consensus::verify(), we should immediately return verified and only use the verification result in consensus::certify().
This better streamlines block verification with no real downside (faster views in the happy path with no slower views if timeout). The only "net negative" is that we won't immediately vote nullify if verification fails (would have to wait for timeout or for certify to be called).