Removed logs used for debugging only

This commit is contained in:
CalDescent 2022-02-03 21:06:36 +00:00
parent 9224ffbf73
commit 618aaaf243

View File

@ -365,11 +365,9 @@ public abstract class Bitcoiny implements ForeignBlockchain {
Long now = NTP.getTime();
boolean isCacheStale = (now != null && now - transactionsCacheTimestamp >= TRANSACTIONS_CACHE_TIMEOUT);
if (!isCacheStale) {
LOGGER.info("Serving transactions from cache");
return transactionsCache;
}
}
LOGGER.info("Fetching transactions from ElectrumX");
Context.propagate(bitcoinjContext);