If the mempool is not completely full, treat the difference between
the maximum size and the actual usage as available for the coin cache.
This also changes the early flush trigger from (usage > 0.9 * space)
to (usage > 0.9 * space && usage > space - 100MB). This means we're not
permanently leaving 10% of the space unused when the space is large.
LogPrintf("* Using %.1fMiB for block index database\n",nBlockTreeDBCache*(1.0/1024/1024));
LogPrintf("* Using %.1fMiB for chain state database\n",nCoinDBCache*(1.0/1024/1024));
LogPrintf("* Using %.1fMiB for in-memory UTXO set\n",nCoinCacheUsage*(1.0/1024/1024));
LogPrintf("* Using %.1fMiB for in-memory UTXO set (plus up to %.1fMiB of unused mempool space)\n",nCoinCacheUsage*(1.0/1024/1024),nMempoolSizeMax*(1.0/1024/1024));