Is it me or difficulty is stuck at 1.00 for the last 2 hours? The network is around 100Mh/s, and we are solving blocks faster than every 5 minutes, shouldn't diff be higher?
Yeah, it's been around 12 hours now and difficulty changed only few times. In the code there is:
static const int64 nTargetTimespan = 24 * 60 * 60; // Xcoin: 1 day
static const int64 nTargetSpacing = 2.5 * 60; // Xcoin: 2.5 minutes
static const int64 nInterval = nTargetTimespan / nTargetSpacing;
so interval between difficulty changes is 24 * 60 / 2.5 = 576 blocks. For me it looks like the target difficulty adjustment period is 1 day, not 1 hour.
You're correct.