I just noticed we can still mine PoW, block rewards are 10 WC. Dedicatedpools show blocks still being found and paid for. Sup with that?
looked at code, important parts...
int64 nSubsidy = 30000 * COIN; <as we saw 30k coins per block>
static const int CUTOFF_HEIGHT = 10000; <cutoff 10k blocks>
static const int64 nMinSubsidy = 10 * COIN; <minimum coin subsidy hmm>
else if(nHeight > CUTOFF_HEIGHT)
{
return nMinSubsidy + nFees; <if above 10k chainheight return 10coins+fees

>
this can be good an extra set to secure the coin