Let's say you have a digital clock that only shows you the hour, not the minutes. If you wanted to guess the correct time, down to the minute, you'd have a 1 in 60 chance of getting the minute correct. However, let's say you noted the time, came back 10 minutes later, rechecked the hour and then guessed. If the hour has changed, you know that the minutes have to be < 10, and if it didn't, the minutes have to be $\geq$ 10. There's a $\frac{1}{6}$ chance that the hour changed, which gives you a $\frac{1}{10}$ chance of guessing correctly, and a $\frac{5}{6}$ chance that it doesn't change, giving your guess a $\frac{1}{50}$ chance of getting the minute right, so your overall chance of guessing correctly is $\frac{1}{6}\cdot\frac{1}{10}+\frac{5}{6}\cdot\frac{1}{50}$, or $\frac{1}{30}$. Replace the 10 minute wait with an $n$ minute wait, however, everything still cancels, leaving you with $\frac{1}{30}$ again (as long as $n$ is not a multiple of 60).
Something seems wrong with the fact that any wait at all doubles your chances of guessing right. I wrote a small python script to test and it thinks empirically the chance with a 10 minute wait is $\frac{1}{60}$. I trust the maths more than I trust my ability to spot errors in the code though.
Is the maths right? Does waiting even a single minute double your chances? Or am I missing something?