Remove dev log

This commit is contained in:
chimp1984 2020-12-19 14:34:49 -05:00
parent 55b2cf6259
commit d65471e976
No known key found for this signature in database
GPG Key ID: 9801B4EC591F90E3

View File

@ -132,11 +132,8 @@ public class XmrTxProofService implements AssetTxProofService {
onP2pNetworkAndWalletReady();
} else {
p2pNetworkAndWalletReady = EasyBind.combine(isP2pBootstrapped, hasSufficientBtcPeers, isBtcBlockDownloadComplete,
(bootstrapped, sufficientPeers, downloadComplete) -> {
log.info("isP2pBootstrapped={}, hasSufficientBtcPeers={} isBtcBlockDownloadComplete={}",
bootstrapped, sufficientPeers, downloadComplete);
return bootstrapped && sufficientPeers && downloadComplete;
});
(bootstrapped, sufficientPeers, downloadComplete) ->
bootstrapped && sufficientPeers && downloadComplete);
p2pNetworkAndWalletReadyListener = (observable, oldValue, newValue) -> {
if (newValue) {