Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Startup problem on slow/degraded networks (the "3/4" problem) #2547

Closed
agb19 opened this issue Mar 17, 2019 · 15 comments
Closed

Startup problem on slow/degraded networks (the "3/4" problem) #2547

agb19 opened this issue Mar 17, 2019 · 15 comments
Assignees
Labels
a:bug in:network is:critical https://bisq.wiki/Critical_bug is:priority PR or issue marked with this label is up for compensation re:Tor

Comments

@agb19
Copy link
Contributor

agb19 commented Mar 17, 2019

Possibly related to: #2474, #2327. Uses #2278.

This is a slightly edited re-post of the issue reported at:
https://bisq.community/t/issue-bisq-startup-problem-on-slow-networks-3-4-problem/7233

Summary:
On slow/congested networks, Bisq never progresses past step 3/4 of the startup sequence, due to a timeout occurring in the initial handshake to seed nodes.

Details:
One of the compulsory steps in the Bisq client startup sequence is a special handshake with a seed node, consisting in an exchange of large data packets in the 1.5 MB size range (PreliminaryGetDataRequest in the debug log). On slow networks, specifically when the network output channel is degraded, this handshake fails systematically with a timeout error, resulting in an inability to start up (the "3/4" problem).

Bisq versions tested: 0.8.1, 0.9.3, 0.9.4, 0.9.5
Test platform: Tails 3.10, 3.11, 3.12 (Debian 9); Compatibility workarounds from #2278

To reproduce the bug, use a working Bisq installation and limit the network output bandwidth to a small value (100 kbps in my example) using the Linux TBF qdisc.

Steps to reproduce:

  • start with a correctly installed and tested operational copy of Bisq
  • close the application
  • in a terminal, execute (replace eth0 with name of default route interface):
    sudo tc qdisc add dev eth0 root tbf rate 100kbit burst 1540 latency 50ms
  • start the application as usual

Expected result:
Bisq should complete the startup sequence and operate (with some lag due to network bandwidth limitation).

Actual result:
Bisq never progresses past step 3/4 of startup sequence, resulting in complete no-op.

Log fragment

Feb-26 12:16:38.651 [JavaFX Application Thread] INFO b.n.p.p.g.RequestDataHandler: We send a PreliminaryGetDataRequest to peer fl3mmribyxgrv63c.onion:8000.
Feb-26 12:17:38.555 [JavaFX Application Thread] WARN b.n.p.p.g.RequestDataManager: We have started already a requestDataHandshake to peer. nodeAddress=fl3mmribyxgrv63c.onion:8000
Feb-26 12:17:38.652 [JavaFX Application Thread] INFO b.n.p.p.g.RequestDataHandler: A timeout occurred at sending getDataRequest:PreliminaryGetDataRequest(supportedCapabilities=[0, 1, 2, 7]) on nodeAddress:fl3mmribyxgrv63c.onion:8000
Feb-26 12:18:44.754 [InputHandler-fl3mmribyxgrv63c.onion:8000] INFO b.n.p.n.Connection$SharedModel: Shut down caused by exception java.net.SocketTimeoutException: Read timed out on connection=Connection{peerAddress=Optional[fl3mmribyxgrv63c.onion:8000], peerType=SEED_NODE, uid=‘1c112047-32de-4631-93e9-5c6a175a30ee’}
Feb-26 12:18:44.774 [JavaFX Application Thread] INFO b.n.p.p.PeerManager: onDisconnect called: nodeAddress=Optional[fl3mmribyxgrv63c.onion:8000], closeConnectionReason=CloseConnectionReason{sendCloseMessage=false, isIntended=false} SOCKET_TIMEOUT
Feb-26 12:18:44.822 [JavaFX Application Thread] INFO b.n.p.p.p.PeerExchangeManager: onDisconnect closeConnectionReason=CloseConnectionReason{sendCloseMessage=false, isIntended=false} SOCKET_TIMEOUT, nodeAddressOpt=Optional[fl3mmribyxgrv63c.onion:8000]
@devinbileck
Copy link
Member

Now that is how you enter a bug report. Thanks!

@agb19
Copy link
Contributor Author

agb19 commented Mar 25, 2019

Thanks @devinbileck, glad to help in whatever way I can. :)

I did some more testing on this issue and did some interesting math as well.

It seems that, if the PreliminaryGetDataRequest operation doesn't complete within a minute, it never does - it ends in a timeout error. This is not a Tor network (or Tor library) problem, it appears to be a timeout constant defined in the Bisq code, although with my limited understanding of Java I haven't been able to locate it.

On the math side of things: since the initial transfer requires a push of ~1.5 MB through a hard window of 60 seconds, it results that the application can't start up if the outbound channel has less than ~250kbps available capacity. This is consistent with the results of my follow-up tests.

If this is the case indeed (someone with knowledge of the code can confirm), then perhaps a solution may be to increase the hardcoded timeout constant, or replace it with a runtime variable based on the expected data transfer size, as Bisq is supposed to know the volume of data being pushed, before initiating the transfer.

@ManfredKarrer
Copy link
Member

@agb19 Do you have the latest version? We ship some data so the request from seed requires less bandwidth. But thanks for your analysis, it is for sure an aspect we need to handle better, both to optimize that less data is requested and that the timeout does not trigger.
Can you post the part in the log file (following 100 lines or so) where the timeout gets triggered?

@ManfredKarrer
Copy link
Member

Ah ignore the log request, I see it in the above logs, seems to be the SocketTimeoutException.

@ManfredKarrer
Copy link
Member

The socket timeout is 2 minutes, so that is already quite long. I think increasing that is probable not a good idea.

@agb19
Copy link
Contributor Author

agb19 commented Mar 25, 2019

Thanks @ManfredKarrer , I saw the 2-minute timeout constant in the source code, however this doesn't match my practical observations, where the timeout message occurs after 60 seconds only (12:16:38 -> 12:17:38 in my log). It might be a different timeout condition.

Agreed that a socket timeout of 2 minutes makes perfect sense, on the other hand, a data transfer completion timeout (which is what seems to be happening here) makes more sense to be a function of the data size.

I use release v0.9.5 in my tests.

@ManfredKarrer
Copy link
Member

Ah there is a timeout in GetDataRequestHandler with 60 seconds. That will be the one which triggered here. I will change that to 90 or 120 sec.

ManfredKarrer added a commit to ManfredKarrer/bisq that referenced this issue Mar 25, 2019
@agb19
Copy link
Contributor Author

agb19 commented Apr 11, 2019

Hi @ManfredKarrer, the fix in PR #2583 works, with some limitations.

In token-bucket simulations, the resistance to network degradation has improved by ~50% as expected, which confirms that the fix does indeed act on the source of the issue.

In real-life conditions, and specifically in my "worst case scenario" network, the improvement is unfortunately insufficient to push the startup sequence over the initial PreliminaryGetDataRequest / GetUpdatedDataRequest hurdles.

I tried gradually increasing the timeout numbers from PR #2583 and found a sweet spot around 300 seconds (5 minutes). This setting seems to work well to achieve the "expected result" above: the application takes a while to start up, but it does so eventually, even on my degraded network, and once the initial hurdle is cleared, the operation is smooth.
I have tested the 300 second mod on versions 0.9.5-0.9.8, on normal and degraded networks, and it worked well for me with no side effects, however I am reluctant to recommend this change as I don't fully understand its impact.

@ManfredKarrer
Copy link
Member

Thanks for your research!

Very long timouts like 5 Minutes might become problematic for other reasons. It will help in that particular case but if the seed node has connection issues you are stuck with an unrespondind seed for too long before you try to connect to another one. We connect to several seeds in parallel anyway so should not be too problematic as well. But I think the solution should be more in the direction to reduce network traffic to the level that with bad network conditions it still does not fail with 1-2 min timeouts.

Please feel free to file a compensation request for your detailed testing and invetigations! Very much appreciated! See https://docs.bisq.network/dao.html about the Bisq DAO and how to file a request.

@agb19
Copy link
Contributor Author

agb19 commented Apr 11, 2019

Thanks for the clarification, glad I was able to help.

Yes, I realize that a bad seed may delay the startup for a client that uses the long timeout setting. I was just unsure whether this setting could potentially have a wider impact on the entire network (like a DoS vector) that I'm not aware of.
If not, and the impact is limited to the specific client, then it might make sense to implement the more tolerant timeout setting as an opt-in command-line option, and leave the choice to the user.
Most users will never need to use this option, however, for a few edge cases like mine, it would offer a choice between (a) the risk of startup delay due to hitting a bad seed node and (b) the certainty of no-op. Simply put, it would make a world of difference.

Agreed, a better approach would be to eliminate the bandwidth peaks by protocol design, but that sounds like a lot of work :)

@ManfredKarrer
Copy link
Member

Yes better than an option (as non technical users will not be able to deal with that) would be to detect network conditions and increase timeout then. But yes changes in the P2P network are all very complex and have to be considered very well. Easy to screw up things unintendedly...

@ripcurlx ripcurlx added the is:priority PR or issue marked with this label is up for compensation label Feb 18, 2020
@ripcurlx ripcurlx added this to To do in Critical Bugs Board via automation Feb 18, 2020
@ripcurlx ripcurlx added the is:critical https://bisq.wiki/Critical_bug label Feb 18, 2020
@freimair
Copy link
Member

freimair commented Feb 27, 2020

I had this very issue during vacation on a boat as well (= poor internet connection).

The issue most likely is that the initial data requests to the seednodes now exceed a size of 2MB and Bisq queries 2 seednodes simulaneously. If that amount of data cannot be transferred to the seed node before connection timeout, Bisq will never sync up.

I fear, that is not something we can easily fix. I thought about changing the syncing process to reduce the request size but that would require a massive change in the code base...
EDIT: there have been some attempts to fix it here #3896

I will think about doing something to alert users on the issue if it happens (#2549) and maybe retry only a single seednode request - thus, reducing the payload by 50%.

Other than that, if you run into this issue, there is no quick way of fixing that.

@kiocosta
Copy link
Contributor

kiocosta commented Jan 19, 2022

I'm facing a similar issue, but on a high speed network.
Bisq only opens when my Bitcoin pruned node is running. Anyone knows how I can fix this?

Here's the full log:
jan.-19 12:55:05.160 [main] INFO  b.c.app.Version: Version{VERSION=1.8.0, P2P_NETWORK_VERSION=1, LOCAL_DB_VERSION=1, TRADE_PROTOCOL_VERSION=4, BASE_CURRENCY_NETWORK=0, getP2PNetworkId()=10} 
jan.-19 12:55:05.161 [main] INFO  b.c.s.CommonSetup: Path to Bisq jar file: /opt/bisq/lib/app/desktop-1.8.0-all.jar 
jan.-19 12:55:05.162 [main] INFO  b.c.u.Profiler: Total memory: 128 MB; Used memory: 19 MB; Free memory: 109 MB; Max memory: 2 GB; No. of threads: 1 
jan.-19 12:55:05.172 [main] INFO  b.c.s.CoreNetworkCapabilities: TRADE_STATISTICS [0], TRADE_STATISTICS_2 [1], ACCOUNT_AGE_WITNESS [2], PROPOSAL [5], BLIND_VOTE [6], ACK_MSG [7], RECEIVE_BSQ_BLOCK [8], DAO_STATE [9], BUNDLE_OF_ENVELOPES [10], SIGNED_ACCOUNT_AGE_WITNESS [11], MEDIATION [12], REFUND_AGENT [13], TRADE_STATISTICS_HASH_UPDATE [14], NO_ADDRESS_PRE_FIX [15], TRADE_STATISTICS_3 [16], BSQ_SWAP_OFFER [17] 
jan.-19 12:55:06.194 [JavaFX Application Thread] INFO  b.c.p.ProvidersRepository: Excluded provider nodes from filter: nodes=[], selected provider baseUrl=http://wizpriceje6q5tdrxkyiazsgu7irquiqjy2dptezqhrtu7l2qelqktid.onion/, providerList=[http://wizpriceje6q5tdrxkyiazsgu7irquiqjy2dptezqhrtu7l2qelqktid.onion/, http://emzypricpidesmyqg2hc6dkwitqzaxrqnpkdg3ae2wef5znncu2ambqd.onion/, http://ro7nv73awqs3ga2qtqeqawrjpbxwarsazznszvr6whv7tes5ehffopid.onion/, http://aprcndeiwdrkbf4fq7iozxbd27dl72oeo76n7zmjwdi4z34agdrnheyd.onion/, http://devinpndvdwll4wiqcyq5e7itezmarg7rzicrvf6brzkwxdm374kmmyd.onion/] 
jan.-19 12:55:06.224 [JavaFX Application Thread] INFO  b.c.a.AvoidStandbyModeService: Started -- disabled power management via /usr/bin/gnome-session-inhibit --app-id Bisq --inhibit suspend --reason Avoid Standby --inhibit-only 
jan.-19 12:55:06.275 [JavaFX Application Thread] INFO  b.c.n.p.s.DefaultSeedNodeRepository: Seed nodes: [devinsn3xuzxhj6pmammrxpydhwwmwp75qkksedo5dn2tlmu7jggo7id.onion:8000, wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000, sn3bsq3evqkpshdmc3sbdxafkhfnk7ctop44jsxbxyys5ridsaw5abyd.onion:8000, devinsn2teu33efff62bnvwbxmfgbfjlgqsu3ad4b4fudx3a725eqnyd.onion:8000, sn2bisqad7ncazupgbd3dcedqh5ptirgwofw63djwpdtftwhddo75oid.onion:8000, sn5emzyvxuildv34n6jewfp2zeota4aq63fsl5yyilnvksezr3htveqd.onion:8000, devinv3rhon24gqf5v6ondoqgyrbzyqihzyouzv7ptltsewhfmox2zqd.onion:8000, sn3emzy56u3mxzsr4geysc52feoq5qt7ja56km6gygwnszkshunn2sid.onion:8000, sn4emzywye3dhjouv7jig677qepg7fnusjidw74fbwneieruhmi7fuyd.onion:8000, sn4bsqpc7eb2ntvpsycxbzqt6fre72l4krp2fl5svphfh2eusrqtq3qd.onion:8000, wizseedscybbttk4bmb2lzvbuk2jtect37lcpva4l3twktmkzemwbead.onion:8000] 
jan.-19 12:55:06.342 [PersistenceManager-read-BsqSwapTrades] INFO  b.c.p.PersistenceManager: Reading BsqSwapTrades completed in 40 ms 
jan.-19 12:55:06.343 [PersistenceManager-read-FailedTrades] INFO  b.c.p.PersistenceManager: Reading FailedTrades completed in 41 ms 
jan.-19 12:55:06.343 [PersistenceManager-read-OpenOffers] INFO  b.c.p.PersistenceManager: Reading OpenOffers completed in 42 ms 
jan.-19 12:55:06.343 [PersistenceManager-read-PendingTrades] INFO  b.c.p.PersistenceManager: Reading PendingTrades completed in 42 ms 
jan.-19 12:55:06.344 [PersistenceManager-read-MyProofOfBurnList] INFO  b.c.p.PersistenceManager: Reading MyProofOfBurnList completed in 37 ms 
jan.-19 12:55:06.344 [PersistenceManager-read-MyBlindVoteList] INFO  b.c.p.PersistenceManager: Reading MyBlindVoteList completed in 38 ms 
jan.-19 12:55:06.346 [PersistenceManager-read-MyProposalList] INFO  b.c.p.PersistenceManager: Reading MyProposalList completed in 39 ms 
jan.-19 12:55:06.348 [PersistenceManager-read-MyVoteList] INFO  b.c.p.PersistenceManager: Reading MyVoteList completed in 42 ms 
jan.-19 12:55:06.349 [PersistenceManager-read-MyReputationList] INFO  b.c.p.PersistenceManager: Reading MyReputationList completed in 42 ms 
jan.-19 12:55:06.349 [PersistenceManager-read-UnconfirmedBsqChangeOutputList] INFO  b.c.p.PersistenceManager: Reading UnconfirmedBsqChangeOutputList completed in 42 ms 
jan.-19 12:55:06.350 [PersistenceManager-read-RefundDisputeList] INFO  b.c.p.PersistenceManager: Reading RefundDisputeList completed in 48 ms 
jan.-19 12:55:06.350 [PersistenceManager-read-MediationDisputeList] INFO  b.c.p.PersistenceManager: Reading MediationDisputeList completed in 48 ms 
jan.-19 12:55:06.350 [PersistenceManager-read-DisputeList] INFO  b.c.p.PersistenceManager: Reading DisputeList completed in 48 ms 
jan.-19 12:55:06.367 [PersistenceManager-read-NavigationPath] INFO  b.c.p.PersistenceManager: Reading NavigationPath completed in 59 ms 
jan.-19 12:55:06.373 [PersistenceManager-read-AddressEntryList] INFO  b.c.p.PersistenceManager: Reading AddressEntryList completed in 73 ms 
jan.-19 12:55:06.386 [PersistenceManager-read-SequenceNumberMap] INFO  b.c.p.PersistenceManager: Reading SequenceNumberMap completed in 83 ms 
jan.-19 12:55:06.415 [PersistenceManager-read-PeerList] INFO  b.c.p.PersistenceManager: Reading PeerList completed in 112 ms 
jan.-19 12:55:06.465 [PersistenceManager-read-IgnoredMailboxMap] INFO  b.c.p.PersistenceManager: Reading IgnoredMailboxMap completed in 161 ms 
jan.-19 12:55:06.470 [PersistenceManager-read-RemovedPayloadsMap] INFO  b.c.p.PersistenceManager: Reading RemovedPayloadsMap completed in 165 ms 
jan.-19 12:55:06.477 [PersistenceManager-read-PreferencesPayload] INFO  b.c.p.PersistenceManager: Reading PreferencesPayload completed in 177 ms 
jan.-19 12:55:06.503 [PersistenceManager-read-BallotList] INFO  b.c.p.PersistenceManager: Reading BallotList completed in 197 ms 
jan.-19 12:55:06.560 [PersistenceManager-read-UserPayload] INFO  b.c.p.PersistenceManager: Reading UserPayload completed in 260 ms 
jan.-19 12:55:06.577 [PersistenceManager-read-ClosedTrades] INFO  b.c.p.PersistenceManager: Reading ClosedTrades completed in 276 ms 
jan.-19 12:55:06.672 [PersistenceManager-read-MailboxMessageList] INFO  b.c.p.PersistenceManager: Reading MailboxMessageList completed in 369 ms 
jan.-19 12:55:06.885 [JavaFX Application Thread] INFO  b.n.p.m.MailboxMessageService: We loaded 1114 persisted mailbox messages.
Per day distribution:
Jan 04=28
Jan 05=163
Jan 06=48
Jan 07=99
Jan 08=54
Jan 09=118
Jan 10=85
Jan 11=33
Jan 12=63
Jan 13=47
Jan 14=64
Jan 15=90
Jan 16=73
Jan 17=149 
jan.-19 12:55:06.979 [JavaFX Application Thread] INFO  b.c.b.n.LocalBitcoinNode: No local Bitcoin node detected on port 8333. 
jan.-19 12:55:08.133 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. SignedWitnessStore exists already. 
jan.-19 12:55:08.135 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. ProposalStore exists already. 
jan.-19 12:55:08.136 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. BlindVoteStore exists already. 
jan.-19 12:55:08.149 [JavaFX Application Thread] INFO  b.d.a.BisqAppMain: Using JavaFX 16 
jan.-19 12:55:08.149 [copyBsqBlocksFromResources] INFO  b.c.d.s.s.BsqBlocksStorageService: No resource directory was copied. BsqBlocks exists already. 
jan.-19 12:55:08.150 [copyBsqBlocksFromResources] INFO  b.n.p.s.p.StoreService: No resource file was copied. DaoStateStore exists already. 
jan.-19 12:55:08.183 [PersistenceManager-read-ProposalStore] INFO  b.c.p.PersistenceManager: Reading ProposalStore completed in 47 ms 
jan.-19 12:55:08.196 [PersistenceManager-read-BlindVoteStore] INFO  b.c.p.PersistenceManager: Reading BlindVoteStore completed in 58 ms 
jan.-19 12:55:08.239 [PersistenceManager-read-TempProposalStore] INFO  b.c.p.PersistenceManager: Reading TempProposalStore completed in 92 ms 
jan.-19 12:55:08.262 [PersistenceManager-read-AccountAgeWitnessStore] INFO  b.c.p.PersistenceManager: Reading AccountAgeWitnessStore completed in 127 ms 
jan.-19 12:55:08.275 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have created the AccountAgeWitnessStore store for the live data and filled it with 53057 entries from the persisted data. 
jan.-19 12:55:08.278 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: We copy resource to file: resourceFileName=AccountAgeWitnessStore_1.4.0_BTC_MAINNET, destinationFile=/home/caio/.local/share/Bisq/btc_mainnet/db/AccountAgeWitnessStore_1.4.0 
jan.-19 12:55:08.279 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: Could not find resourceFile AccountAgeWitnessStore_1.4.0_BTC_MAINNET. That is expected if none is provided yet. 
jan.-19 12:55:08.295 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: We copy resource to file: resourceFileName=AccountAgeWitnessStore_1.5.0_BTC_MAINNET, destinationFile=/home/caio/.local/share/Bisq/btc_mainnet/db/AccountAgeWitnessStore_1.5.0 
jan.-19 12:55:08.296 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: Could not find resourceFile AccountAgeWitnessStore_1.5.0_BTC_MAINNET. That is expected if none is provided yet. 
jan.-19 12:55:08.296 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. AccountAgeWitnessStore_1.5.2 exists already. 
jan.-19 12:55:08.297 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. AccountAgeWitnessStore_1.5.5 exists already. 
jan.-19 12:55:08.297 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. AccountAgeWitnessStore_1.5.7 exists already. 
jan.-19 12:55:08.297 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. AccountAgeWitnessStore_1.6.0 exists already. 
jan.-19 12:55:08.303 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. AccountAgeWitnessStore_1.6.3 exists already. 
jan.-19 12:55:08.310 [PersistenceManager-read-AccountAgeWitnessStore_1.6.0] INFO  b.c.p.PersistenceManager: Reading AccountAgeWitnessStore_1.6.0 completed in 7 ms 
jan.-19 12:55:08.311 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. AccountAgeWitnessStore_1.6.5 exists already. 
jan.-19 12:55:08.311 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. AccountAgeWitnessStore_1.7.2 exists already. 
jan.-19 12:55:08.321 [PersistenceManager-read-AccountAgeWitnessStore_1.5.5] INFO  b.c.p.PersistenceManager: Reading AccountAgeWitnessStore_1.5.5 completed in 24 ms 
jan.-19 12:55:08.321 [PersistenceManager-read-AccountAgeWitnessStore_1.6.3] INFO  b.c.p.PersistenceManager: Reading AccountAgeWitnessStore_1.6.3 completed in 10 ms 
jan.-19 12:55:08.324 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. AccountAgeWitnessStore_1.7.4 exists already. 
jan.-19 12:55:08.334 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. AccountAgeWitnessStore_1.8.0 exists already. 
jan.-19 12:55:08.337 [PersistenceManager-read-AccountAgeWitnessStore_1.5.7] INFO  b.c.p.PersistenceManager: Reading AccountAgeWitnessStore_1.5.7 completed in 40 ms 
jan.-19 12:55:08.347 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from AccountAgeWitnessStore_1.6.0 3850 historical items. 
jan.-19 12:55:08.350 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.6.0 was applied 
jan.-19 12:55:08.355 [PersistenceManager-read-AccountAgeWitnessStore_1.6.5] INFO  b.c.p.PersistenceManager: Reading AccountAgeWitnessStore_1.6.5 completed in 31 ms 
jan.-19 12:55:08.355 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from AccountAgeWitnessStore_1.5.5 5985 historical items. 
jan.-19 12:55:08.357 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.5.5 was applied 
jan.-19 12:55:08.358 [PersistenceManager-read-AccountAgeWitnessStore_1.7.4] INFO  b.c.p.PersistenceManager: Reading AccountAgeWitnessStore_1.7.4 completed in 24 ms 
jan.-19 12:55:08.360 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from AccountAgeWitnessStore_1.6.3 3930 historical items. 
jan.-19 12:55:08.361 [PersistenceManager-read-TradeStatistics3Store] INFO  b.c.p.PersistenceManager: Reading TradeStatistics3Store completed in 225 ms 
jan.-19 12:55:08.361 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.6.3 was applied 
jan.-19 12:55:08.363 [PersistenceManager-read-AccountAgeWitnessStore_1.7.2] INFO  b.c.p.PersistenceManager: Reading AccountAgeWitnessStore_1.7.2 completed in 40 ms 
jan.-19 12:55:08.365 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from AccountAgeWitnessStore_1.5.7 5287 historical items. 
jan.-19 12:55:08.367 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.5.7 was applied 
jan.-19 12:55:08.370 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from AccountAgeWitnessStore_1.6.5 3465 historical items. 
jan.-19 12:55:08.370 [PersistenceManager-read-AccountAgeWitnessStore_1.8.0] INFO  b.c.p.PersistenceManager: Reading AccountAgeWitnessStore_1.8.0 completed in 24 ms 
jan.-19 12:55:08.375 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.6.5 was applied 
jan.-19 12:55:08.379 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from AccountAgeWitnessStore_1.7.4 5542 historical items. 
jan.-19 12:55:08.381 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.7.4 was applied 
jan.-19 12:55:08.381 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have created the TradeStatistics3Store store for the live data and filled it with 6216 entries from the persisted data. 
jan.-19 12:55:08.382 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. TradeStatistics3Store_1.4.0 exists already. 
jan.-19 12:55:08.382 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. TradeStatistics3Store_1.5.0 exists already. 
jan.-19 12:55:08.383 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. TradeStatistics3Store_1.5.2 exists already. 
jan.-19 12:55:08.394 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. TradeStatistics3Store_1.5.5 exists already. 
jan.-19 12:55:08.395 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. TradeStatistics3Store_1.5.7 exists already. 
jan.-19 12:55:08.410 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. TradeStatistics3Store_1.6.0 exists already. 
jan.-19 12:55:08.418 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. TradeStatistics3Store_1.6.3 exists already. 
jan.-19 12:55:08.427 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. TradeStatistics3Store_1.6.5 exists already. 
jan.-19 12:55:08.435 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. TradeStatistics3Store_1.7.2 exists already. 
jan.-19 12:55:08.436 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. TradeStatistics3Store_1.7.4 exists already. 
jan.-19 12:55:08.436 [JavaFX Application Thread] INFO  b.n.p.s.p.StoreService: No resource file was copied. TradeStatistics3Store_1.8.0 exists already. 
jan.-19 12:55:08.440 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from AccountAgeWitnessStore_1.7.2 3818 historical items. 
jan.-19 12:55:08.441 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.7.2 was applied 
jan.-19 12:55:08.462 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from AccountAgeWitnessStore_1.8.0 9517 historical items. 
jan.-19 12:55:08.465 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.8.0 was applied 
jan.-19 12:55:08.462 [PersistenceManager-read-TradeStatistics3Store_1.5.0] INFO  b.c.p.PersistenceManager: Reading TradeStatistics3Store_1.5.0 completed in 79 ms 
jan.-19 12:55:08.500 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from TradeStatistics3Store_1.5.0 3000 historical items. 
jan.-19 12:55:08.501 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.5.0 was applied 
jan.-19 12:55:08.527 [PersistenceManager-read-TradeStatistics3Store_1.5.2] INFO  b.c.p.PersistenceManager: Reading TradeStatistics3Store_1.5.2 completed in 133 ms 
jan.-19 12:55:08.530 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from TradeStatistics3Store_1.5.2 4230 historical items. 
jan.-19 12:55:08.531 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.5.2 was applied 
jan.-19 12:55:08.539 [PersistenceManager-read-AccountAgeWitnessStore_1.5.2] INFO  b.c.p.PersistenceManager: Reading AccountAgeWitnessStore_1.5.2 completed in 242 ms 
jan.-19 12:55:08.561 [PersistenceManager-read-TradeStatistics3Store_1.5.7] INFO  b.c.p.PersistenceManager: Reading TradeStatistics3Store_1.5.7 completed in 143 ms 
jan.-19 12:55:08.588 [PersistenceManager-read-TradeStatistics3Store_1.6.3] INFO  b.c.p.PersistenceManager: Reading TradeStatistics3Store_1.6.3 completed in 160 ms 
jan.-19 12:55:08.590 [PersistenceManager-read-TradeStatistics3Store_1.6.5] INFO  b.c.p.PersistenceManager: Reading TradeStatistics3Store_1.6.5 completed in 139 ms 
jan.-19 12:55:08.598 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from AccountAgeWitnessStore_1.5.2 70283 historical items. 
jan.-19 12:55:08.604 [PersistenceManager-read-TradeStatistics3Store_1.6.0] INFO  b.c.p.PersistenceManager: Reading TradeStatistics3Store_1.6.0 completed in 186 ms 
jan.-19 12:55:08.614 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.5.2 was applied 
jan.-19 12:55:08.626 [PersistenceManager-read-TradeStatistics3Store_1.5.5] INFO  b.c.p.PersistenceManager: Reading TradeStatistics3Store_1.5.5 completed in 208 ms 
jan.-19 12:55:08.628 [PersistenceManager-read-TradeStatistics3Store_1.7.2] INFO  b.c.p.PersistenceManager: Reading TradeStatistics3Store_1.7.2 completed in 153 ms 
jan.-19 12:55:08.639 [PersistenceManager-read-TradeStatistics3Store_1.7.4] INFO  b.c.p.PersistenceManager: Reading TradeStatistics3Store_1.7.4 completed in 167 ms 
jan.-19 12:55:08.640 [PersistenceManager-read-SignedWitnessStore] INFO  b.c.p.PersistenceManager: Reading SignedWitnessStore completed in 506 ms 
jan.-19 12:55:08.673 [PersistenceManager-read-TradeStatistics3Store_1.8.0] INFO  b.c.p.PersistenceManager: Reading TradeStatistics3Store_1.8.0 completed in 205 ms 
jan.-19 12:55:08.703 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from TradeStatistics3Store_1.5.7 3800 historical items. 
jan.-19 12:55:08.705 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.5.7 was applied 
jan.-19 12:55:08.707 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from TradeStatistics3Store_1.6.3 3436 historical items. 
jan.-19 12:55:08.708 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.6.3 was applied 
jan.-19 12:55:08.710 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from TradeStatistics3Store_1.6.5 3515 historical items. 
jan.-19 12:55:08.711 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.6.5 was applied 
jan.-19 12:55:08.712 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from TradeStatistics3Store_1.6.0 3660 historical items. 
jan.-19 12:55:08.713 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.6.0 was applied 
jan.-19 12:55:08.757 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from TradeStatistics3Store_1.5.5 5954 historical items. 
jan.-19 12:55:08.758 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.5.5 was applied 
jan.-19 12:55:08.759 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from TradeStatistics3Store_1.7.2 5195 historical items. 
jan.-19 12:55:08.760 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.7.2 was applied 
jan.-19 12:55:08.762 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from TradeStatistics3Store_1.7.4 6760 historical items. 
jan.-19 12:55:08.776 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.7.4 was applied 
jan.-19 12:55:08.787 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from TradeStatistics3Store_1.8.0 10225 historical items. 
jan.-19 12:55:08.797 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.8.0 was applied 
jan.-19 12:55:08.911 [PersistenceManager-read-DaoStateStore] INFO  b.c.p.PersistenceManager: Reading DaoStateStore completed in 760 ms 
jan.-19 12:55:09.043 [PersistenceManager-read-TradeStatistics3Store_1.4.0] INFO  b.c.p.PersistenceManager: Reading TradeStatistics3Store_1.4.0 completed in 660 ms 
jan.-19 12:55:09.055 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: We have read from TradeStatistics3Store_1.4.0 75912 historical items. 
jan.-19 12:55:09.056 [JavaFX Application Thread] INFO  b.n.p.s.p.HistoricalDataStoreService: No pruning from historical data store with version 1.4.0 was applied 
jan.-19 12:55:09.820 [Read-BsqBlocksStore] INFO  b.c.d.s.s.BlocksPersistence: Reading 147454 blocks took 908 msec 
jan.-19 12:55:10.110 [Read-BsqBlocksStore] INFO  b.c.d.s.s.BsqBlocksStorageService: Reading and deserializing 147454 blocks took 1198 ms 
jan.-19 12:55:10.119 [JavaFX Application Thread] INFO  b.c.a.BisqSetup: Init P2P network 
jan.-19 12:55:10.129 [NetworkNode-9999] INFO  b.n.p.n.NewTor: Starting tor 
jan.-19 12:55:10.132 [JavaFX Application Thread] INFO  b.c.a.BisqSetup: walletInitialized=false, p2pNetWorkReady=false 
jan.-19 12:55:12.048 [NetworkNode-9999] INFO  o.b.n.tor.Tor: Starting Tor 
jan.-19 12:55:17.460 [NetworkNode-9999] INFO  b.n.p.n.NewTor: 
################################################################
Tor started after 7331 ms. Start publishing hidden service.
################################################################ 
jan.-19 12:55:17.561 [JavaFX Application Thread] INFO  b.c.a.BisqSetup: Init wallet 
jan.-19 12:55:17.561 [JavaFX Application Thread] INFO  b.c.a.WalletAppSetup: Initialize WalletAppSetup with BitcoinJ version 0.15.10.bisq.15 and hash of BitcoinJ commit 2a80db4 
jan.-19 12:55:17.642 [JavaFX Application Thread] INFO  b.c.b.s.WalletsSetup: Socks5Proxy for bitcoinj: socks5Proxy=localhost:35925	Version 5 
jan.-19 12:55:17.643 [JavaFX Application Thread] INFO  o.b.c.Context: Creating bitcoinj 0.15.10.bisq.15 context. 
jan.-19 12:55:17.650 [JavaFX Application Thread] INFO  b.c.b.n.BtcNetworkConfig: You connect with peerAddresses: [[emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion]:8333, [emzybtc25oddoa2prol2znpz2axnrg6k77xwgirmhv7igoiucddsxiad.onion]:8333, [emzybtc5bnpb2o6gh54oquiox54o4r7yn4a2wiiwzrjonlouaibm2zid.onion]:8333, [emzybtc454ewbviqnmgtgx3rgublsgkk23r4onbhidcv36wremue4kqd.onion]:8333, [catlnkpdm454ecngktyo4z22m5dlcvfvgzz4nt5l36eeczecrafslkqd.onion]:8333, [bsqbtctulf2g4jtjsdfgl2ed7qs6zz5wqx27qnyiik7laockryvszqqd.onion]:8333, [bsqbtcparrfihlwolt4xgjbf4cgqckvrvsfyvy6vhiqrnh4w6ghixoid.onion]:8333, [jygcc54etaubgdpcvzgbihjaqbc37cstpvum5sjzvka4bibkp4wrgnqd.onion]:8333, [h32haomoe52ljz6qopedsocvotvoj5lm2zmecfhdhawb3flbsf64l2qd.onion]:8333, [devinbtctu7uctl7hly2juu3thbgeivfnvw3ckj3phy6nyvpnx66yeyd.onion]:8333, [devinbtcyk643iruzfpaxw3on2jket7rbjmwygm42dmdyub3ietrbmid.onion]:8333, [devinbtcmwkuitvxl3tfi5of4zau46ymeannkjv6fpnylkgf3q5fa3id.onion]:8333, [wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion]:8333, [jto2jfbsxhb6yvhcrrjddrgbakte6tgsy3c3z3prss64gndgvovvosyd.onion]:8333, [rfqmn3qe36uaptkxhdvi74p4hyrzhir6vhmzb2hqryxodig4gue2zbyd.onion]:8333, [azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion]:8333] 
jan.-19 12:55:17.656 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 10869 entries from SignedWitnessStorageService to the excluded key set of our request 
jan.-19 12:55:17.661 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 53057 entries from AccountAgeWitnessStorageService to the excluded key set of our request 
jan.-19 12:55:17.661 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 0 entries from TradeStatistics2StorageService to the excluded key set of our request 
jan.-19 12:55:17.662 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 6216 entries from TradeStatistics3StorageService to the excluded key set of our request 
jan.-19 12:55:17.662 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 829 entries from ProposalStorageService to the excluded key set of our request 
jan.-19 12:55:17.663 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 445 entries from BlindVoteStorageService to the excluded key set of our request 
jan.-19 12:55:17.688 [JavaFX Application Thread] INFO  b.n.p.p.g.RequestDataHandler: We send a PreliminaryGetDataRequest to peer sn3emzy56u3mxzsr4geysc52feoq5qt7ja56km6gygwnszkshunn2sid.onion:8000.  
jan.-19 12:55:17.747 [ STARTING] INFO  o.b.c.AbstractBlockChain: chain head is at height 719468:
 block: 
   hash: 000000000000000000029a84dfccad7fa2dc96c622cb59690de927ba1a0daacb
   version: 536928260 (BIP34, BIP66, BIP65)
   previous block: 00000000000000000009bd23935dd4d492bf3f2eaeefcd7c7b1ad20a9e4aa8ec
   time: 1642606851 (2022-01-19T15:40:51Z)
   difficulty target (nBits): 386632843
   nonce: 747431860
 
jan.-19 12:55:17.768 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 10869 entries from SignedWitnessStorageService to the excluded key set of our request 
jan.-19 12:55:17.777 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 53057 entries from AccountAgeWitnessStorageService to the excluded key set of our request 
jan.-19 12:55:17.777 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 0 entries from TradeStatistics2StorageService to the excluded key set of our request 
jan.-19 12:55:17.778 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 6216 entries from TradeStatistics3StorageService to the excluded key set of our request 
jan.-19 12:55:17.779 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 829 entries from ProposalStorageService to the excluded key set of our request 
jan.-19 12:55:17.779 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 445 entries from BlindVoteStorageService to the excluded key set of our request 
jan.-19 12:55:17.801 [JavaFX Application Thread] INFO  b.n.p.p.g.RequestDataHandler: We send a PreliminaryGetDataRequest to peer wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000.  
jan.-19 12:55:17.867 [ STARTING] INFO  b.c.b.s.WalletConfig: We try to connect to 7 btc nodes 
jan.-19 12:55:17.885 [PeerGroup Thread] INFO  o.b.c.PeerGroup: Starting ... 
jan.-19 12:55:17.892 [PeerGroup Thread] INFO  o.b.c.PeerGroup: Attempting connection to [emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion]:8333     (0 connected, 1 pending, 7 max) 
jan.-19 12:55:17.894 [PeerGroup Thread] INFO  o.b.c.PeerGroup: Attempting connection to [azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion]:8333     (0 connected, 2 pending, 7 max) 
jan.-19 12:55:17.895 [PeerGroup Thread] INFO  o.b.c.PeerGroup: Attempting connection to [rfqmn3qe36uaptkxhdvi74p4hyrzhir6vhmzb2hqryxodig4gue2zbyd.onion]:8333     (0 connected, 3 pending, 7 max) 
jan.-19 12:55:17.896 [PeerGroup Thread] INFO  o.b.c.PeerGroup: Attempting connection to [jto2jfbsxhb6yvhcrrjddrgbakte6tgsy3c3z3prss64gndgvovvosyd.onion]:8333     (0 connected, 4 pending, 7 max) 
jan.-19 12:55:17.896 [PeerGroup Thread] INFO  o.b.c.PeerGroup: Attempting connection to [wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion]:8333     (0 connected, 5 pending, 7 max) 
jan.-19 12:55:17.897 [PeerGroup Thread] INFO  o.b.c.PeerGroup: Attempting connection to [devinbtcmwkuitvxl3tfi5of4zau46ymeannkjv6fpnylkgf3q5fa3id.onion]:8333     (0 connected, 6 pending, 7 max) 
jan.-19 12:55:17.897 [PeerGroup Thread] INFO  o.b.c.PeerGroup: Attempting connection to [devinbtcyk643iruzfpaxw3on2jket7rbjmwygm42dmdyub3ietrbmid.onion]:8333     (0 connected, 7 pending, 7 max) 
jan.-19 12:55:17.990 [JavaFX Application Thread] INFO  b.c.a.BisqSetup: Wallet password required 
jan.-19 12:55:23.195 [ScryptUtil:deriveKeyWithScrypt-0] INFO  o.b.c.KeyCrypterScrypt: Deriving key took 711.5 ms for N=32768, r=8, p=6. 
jan.-19 12:55:23.202 [JavaFX Application Thread] INFO  b.c.a.BisqSetup: walletInitialized=true, p2pNetWorkReady=false 
jan.-19 12:55:28.974 [BlockingClient network thread for emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion/<unresolved>:8333] INFO  o.b.core.Peer: Announcing to emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion/<unresolved>:8333 as: /bitcoinj:0.15.10.bisq.15/Bisq:1.8.0/ 
jan.-19 12:55:29.199 [BlockingClient network thread for jto2jfbsxhb6yvhcrrjddrgbakte6tgsy3c3z3prss64gndgvovvosyd.onion/<unresolved>:8333] INFO  o.b.core.Peer: Announcing to jto2jfbsxhb6yvhcrrjddrgbakte6tgsy3c3z3prss64gndgvovvosyd.onion/<unresolved>:8333 as: /bitcoinj:0.15.10.bisq.15/Bisq:1.8.0/ 
jan.-19 12:55:29.199 [NetworkNode:SendMessage-to-wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000] INFO  b.n.p.n.NetworkNode: Socket creation to peersNodeAddress wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000 took 11397 ms 
jan.-19 12:55:29.248 [NetworkNode:SendMessage-to-wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000] INFO  b.n.p.p.g.m.PreliminaryGetDataRequest: Sending a PreliminaryGetDataRequest with 1610.8 kB and 72581 excluded key entries. Requesters version=1.8.0 
jan.-19 12:55:29.260 [pool-11-thread-1] INFO  b.n.p.p.g.m.PreliminaryGetDataRequest: Sending a PreliminaryGetDataRequest with 1610.8 kB and 72581 excluded key entries. Requesters version=1.8.0 
jan.-19 12:55:29.426 [BlockingClient network thread for azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion/<unresolved>:8333] INFO  o.b.core.Peer: Announcing to azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion/<unresolved>:8333 as: /bitcoinj:0.15.10.bisq.15/Bisq:1.8.0/ 
jan.-19 12:55:29.701 [BlockingClient network thread for wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion/<unresolved>:8333] INFO  o.b.core.Peer: Announcing to wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion/<unresolved>:8333 as: /bitcoinj:0.15.10.bisq.15/Bisq:1.8.0/ 
jan.-19 12:55:30.314 [BlockingClient network thread for emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion]:8333, version=70016, subVer=/Satoshi:0.21.1(@emzy)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:29, height=719468} 
jan.-19 12:55:30.317 [BlockingClient network thread for emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion/<unresolved>:8333] INFO  o.b.c.PeerGroup: Peer{[emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion]:8333, version=70016, subVer=/Satoshi:0.21.1(@emzy)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:29, height=719468}: New peer      (1 connected, 6 pending, 7 max) 
jan.-19 12:55:30.317 [BlockingClient network thread for emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion]:8333, version=70016, subVer=/Satoshi:0.21.1(@emzy)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:29, height=719468}: Sending Bloom filter and querying mempool 
jan.-19 12:55:30.618 [BlockingClient network thread for devinbtcyk643iruzfpaxw3on2jket7rbjmwygm42dmdyub3ietrbmid.onion/<unresolved>:8333] INFO  o.b.core.Peer: Announcing to devinbtcyk643iruzfpaxw3on2jket7rbjmwygm42dmdyub3ietrbmid.onion/<unresolved>:8333 as: /bitcoinj:0.15.10.bisq.15/Bisq:1.8.0/ 
jan.-19 12:55:30.823 [BlockingClient network thread for wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion]:8333, version=70016, subVer=/Satoshi:0.20.99(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:30, height=719468} 
jan.-19 12:55:30.823 [BlockingClient network thread for wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion/<unresolved>:8333] INFO  o.b.c.PeerGroup: Peer{[wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion]:8333, version=70016, subVer=/Satoshi:0.20.99(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:30, height=719468}: New peer      (2 connected, 5 pending, 7 max) 
jan.-19 12:55:30.824 [BlockingClient network thread for wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion]:8333, version=70016, subVer=/Satoshi:0.20.99(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:30, height=719468}: Sending Bloom filter and querying mempool 
jan.-19 12:55:30.826 [BlockingClient network thread for wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion/<unresolved>:8333] WARN  o.b.core.Peer: Peer{[wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion]:8333, version=70016, subVer=/Satoshi:0.20.99(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:30, height=719468}: Received unhandled message: org.bitcoinj.core.SendAddrV2Message@69374706 
jan.-19 12:55:30.843 [NetworkNode:SendMessage-to-sn3emzy56u3mxzsr4geysc52feoq5qt7ja56km6gygwnszkshunn2sid.onion:8000] INFO  b.n.p.n.NetworkNode: Socket creation to peersNodeAddress sn3emzy56u3mxzsr4geysc52feoq5qt7ja56km6gygwnszkshunn2sid.onion:8000 took 13153 ms 
jan.-19 12:55:30.844 [BlockingClient network thread for azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion]:8333, version=70016, subVer=/Satoshi:0.21.0(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:29, height=719468} 
jan.-19 12:55:30.844 [BlockingClient network thread for jto2jfbsxhb6yvhcrrjddrgbakte6tgsy3c3z3prss64gndgvovvosyd.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[jto2jfbsxhb6yvhcrrjddrgbakte6tgsy3c3z3prss64gndgvovvosyd.onion]:8333, version=70016, subVer=/Satoshi:0.21.2(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:30, height=719468} 
jan.-19 12:55:30.845 [BlockingClient network thread for azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion/<unresolved>:8333] INFO  o.b.c.PeerGroup: Peer{[azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion]:8333, version=70016, subVer=/Satoshi:0.21.0(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:29, height=719468}: New peer      (3 connected, 4 pending, 7 max) 
jan.-19 12:55:30.846 [BlockingClient network thread for azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion]:8333, version=70016, subVer=/Satoshi:0.21.0(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:29, height=719468}: Sending Bloom filter and querying mempool 
jan.-19 12:55:30.847 [BlockingClient network thread for jto2jfbsxhb6yvhcrrjddrgbakte6tgsy3c3z3prss64gndgvovvosyd.onion/<unresolved>:8333] INFO  o.b.c.PeerGroup: Peer{[jto2jfbsxhb6yvhcrrjddrgbakte6tgsy3c3z3prss64gndgvovvosyd.onion]:8333, version=70016, subVer=/Satoshi:0.21.2(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:30, height=719468}: New peer      (4 connected, 3 pending, 7 max) 
jan.-19 12:55:30.848 [BlockingClient network thread for jto2jfbsxhb6yvhcrrjddrgbakte6tgsy3c3z3prss64gndgvovvosyd.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[jto2jfbsxhb6yvhcrrjddrgbakte6tgsy3c3z3prss64gndgvovvosyd.onion]:8333, version=70016, subVer=/Satoshi:0.21.2(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:30, height=719468}: Sending Bloom filter and querying mempool 
jan.-19 12:55:30.851 [BlockingClient network thread for jto2jfbsxhb6yvhcrrjddrgbakte6tgsy3c3z3prss64gndgvovvosyd.onion/<unresolved>:8333] INFO  o.b.c.PeerGroup: Setting download peer: Peer{[azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion]:8333, version=70016, subVer=/Satoshi:0.21.0(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:29, height=719468} 
jan.-19 12:55:30.867 [NetworkNode:SendMessage-to-sn3emzy56u3mxzsr4geysc52feoq5qt7ja56km6gygwnszkshunn2sid.onion:8000] INFO  b.n.p.p.g.m.PreliminaryGetDataRequest: Sending a PreliminaryGetDataRequest with 1610.799 kB and 72581 excluded key entries. Requesters version=1.8.0 
jan.-19 12:55:30.879 [pool-12-thread-1] INFO  b.n.p.p.g.m.PreliminaryGetDataRequest: Sending a PreliminaryGetDataRequest with 1610.799 kB and 72581 excluded key entries. Requesters version=1.8.0 
jan.-19 12:55:31.853 [PeerGroup Thread] INFO  o.b.c.PeerGroup$ChainDownloadSpeedCalculator: End of sync detected at height 719468. 
jan.-19 12:55:31.971 [BlockingClient network thread for devinbtcyk643iruzfpaxw3on2jket7rbjmwygm42dmdyub3ietrbmid.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[devinbtcyk643iruzfpaxw3on2jket7rbjmwygm42dmdyub3ietrbmid.onion]:8333, version=70016, subVer=/Satoshi:0.21.1(@devinbileck)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:31, height=719468} 
jan.-19 12:55:31.972 [BlockingClient network thread for devinbtcyk643iruzfpaxw3on2jket7rbjmwygm42dmdyub3ietrbmid.onion/<unresolved>:8333] INFO  o.b.c.PeerGroup: Peer{[devinbtcyk643iruzfpaxw3on2jket7rbjmwygm42dmdyub3ietrbmid.onion]:8333, version=70016, subVer=/Satoshi:0.21.1(@devinbileck)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:31, height=719468}: New peer      (5 connected, 2 pending, 7 max) 
jan.-19 12:55:31.973 [BlockingClient network thread for devinbtcyk643iruzfpaxw3on2jket7rbjmwygm42dmdyub3ietrbmid.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[devinbtcyk643iruzfpaxw3on2jket7rbjmwygm42dmdyub3ietrbmid.onion]:8333, version=70016, subVer=/Satoshi:0.21.1(@devinbileck)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:31, height=719468}: Sending Bloom filter and querying mempool 
jan.-19 12:55:32.001 [BlockingClient network thread for emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion]:8333, version=70016, subVer=/Satoshi:0.21.1(@emzy)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:29, height=719468}: Announced fee filter: 0.00001 BTC/kB 
jan.-19 12:55:32.257 [BlockingClient network thread for wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[wizbit5555bsslwv4ctronnsgk5vh2w2pdx7v7eyuivlyuoteejk7lid.onion]:8333, version=70016, subVer=/Satoshi:0.20.99(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:30, height=719468}: Announced fee filter: 0.00001 BTC/kB 
jan.-19 12:55:33.083 [BlockingClient network thread for azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion]:8333, version=70016, subVer=/Satoshi:0.21.0(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:29, height=719468}: Announced fee filter: 0.00001 BTC/kB 
jan.-19 12:55:33.384 [BlockingClient network thread for jto2jfbsxhb6yvhcrrjddrgbakte6tgsy3c3z3prss64gndgvovvosyd.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[jto2jfbsxhb6yvhcrrjddrgbakte6tgsy3c3z3prss64gndgvovvosyd.onion]:8333, version=70016, subVer=/Satoshi:0.21.2(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:30, height=719468}: Announced fee filter: 0.00001 BTC/kB 
jan.-19 12:55:33.694 [BlockingClient network thread for devinbtcyk643iruzfpaxw3on2jket7rbjmwygm42dmdyub3ietrbmid.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[devinbtcyk643iruzfpaxw3on2jket7rbjmwygm42dmdyub3ietrbmid.onion]:8333, version=70016, subVer=/Satoshi:0.21.1(@devinbileck)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:31, height=719468}: Announced fee filter: 0.00001 BTC/kB 
jan.-19 12:55:35.805 [InputHandler-wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000] INFO  b.n.p.n.Connection: Connection shutdown started 
jan.-19 12:55:35.815 [InputHandler-wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000] INFO  b.n.p.n.Connection: Connection doShutDown started 
jan.-19 12:55:35.830 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: onDisconnect called: nodeAddress=Optional[wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000], closeConnectionReason=CloseConnectionReason{sendCloseMessage=false, isIntended=true} CLOSE_REQUESTED_BY_PEER 
jan.-19 12:55:35.833 [JavaFX Application Thread] INFO  b.n.p.p.p.PeerExchangeManager: onDisconnect closeConnectionReason=CloseConnectionReason{sendCloseMessage=false, isIntended=true} CLOSE_REQUESTED_BY_PEER, nodeAddressOpt=Optional[wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000] 
jan.-19 12:55:37.894 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:37.898 [Thread-18] INFO  b.n.p.n.TorNetworkNode: 
################################################################
Tor hidden service published after 20438 ms. Socket=HiddenServiceSocket[addr=uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion,port=9999]
################################################################ 
jan.-19 12:55:37.926 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:38.951 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:39.037 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:39.221 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:39.221 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:39.221 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:39.232 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: We have 1 connections open. Our limit is 12 
jan.-19 12:55:39.358 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:39.359 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:39.383 [BlockingClient network thread for devinbtcmwkuitvxl3tfi5of4zau46ymeannkjv6fpnylkgf3q5fa3id.onion/<unresolved>:8333] INFO  o.b.core.Peer: Announcing to devinbtcmwkuitvxl3tfi5of4zau46ymeannkjv6fpnylkgf3q5fa3id.onion/<unresolved>:8333 as: /bitcoinj:0.15.10.bisq.15/Bisq:1.8.0/ 
jan.-19 12:55:39.446 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:39.733 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:39.733 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:39.734 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:39.734 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:41.581 [BlockingClient network thread for devinbtcmwkuitvxl3tfi5of4zau46ymeannkjv6fpnylkgf3q5fa3id.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[devinbtcmwkuitvxl3tfi5of4zau46ymeannkjv6fpnylkgf3q5fa3id.onion]:8333, version=70016, subVer=/Satoshi:0.21.1(@devinbileck)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:40, height=719468} 
jan.-19 12:55:41.582 [BlockingClient network thread for devinbtcmwkuitvxl3tfi5of4zau46ymeannkjv6fpnylkgf3q5fa3id.onion/<unresolved>:8333] INFO  o.b.c.PeerGroup: Peer{[devinbtcmwkuitvxl3tfi5of4zau46ymeannkjv6fpnylkgf3q5fa3id.onion]:8333, version=70016, subVer=/Satoshi:0.21.1(@devinbileck)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:40, height=719468}: New peer      (6 connected, 1 pending, 7 max) 
jan.-19 12:55:41.583 [BlockingClient network thread for devinbtcmwkuitvxl3tfi5of4zau46ymeannkjv6fpnylkgf3q5fa3id.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[devinbtcmwkuitvxl3tfi5of4zau46ymeannkjv6fpnylkgf3q5fa3id.onion]:8333, version=70016, subVer=/Satoshi:0.21.1(@devinbileck)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:40, height=719468}: Sending Bloom filter and querying mempool 
jan.-19 12:55:43.727 [BlockingClient network thread for devinbtcmwkuitvxl3tfi5of4zau46ymeannkjv6fpnylkgf3q5fa3id.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[devinbtcmwkuitvxl3tfi5of4zau46ymeannkjv6fpnylkgf3q5fa3id.onion]:8333, version=70016, subVer=/Satoshi:0.21.1(@devinbileck)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:40, height=719468}: Announced fee filter: 0.00001 BTC/kB 
jan.-19 12:55:45.570 [BlockingClient network thread for rfqmn3qe36uaptkxhdvi74p4hyrzhir6vhmzb2hqryxodig4gue2zbyd.onion/<unresolved>:8333] INFO  o.b.core.Peer: Announcing to rfqmn3qe36uaptkxhdvi74p4hyrzhir6vhmzb2hqryxodig4gue2zbyd.onion/<unresolved>:8333 as: /bitcoinj:0.15.10.bisq.15/Bisq:1.8.0/ 
jan.-19 12:55:46.919 [BlockingClient network thread for rfqmn3qe36uaptkxhdvi74p4hyrzhir6vhmzb2hqryxodig4gue2zbyd.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[rfqmn3qe36uaptkxhdvi74p4hyrzhir6vhmzb2hqryxodig4gue2zbyd.onion]:8333, version=70016, subVer=/Satoshi:0.21.2(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:46, height=719468} 
jan.-19 12:55:46.920 [BlockingClient network thread for rfqmn3qe36uaptkxhdvi74p4hyrzhir6vhmzb2hqryxodig4gue2zbyd.onion/<unresolved>:8333] INFO  o.b.c.PeerGroup: Peer{[rfqmn3qe36uaptkxhdvi74p4hyrzhir6vhmzb2hqryxodig4gue2zbyd.onion]:8333, version=70016, subVer=/Satoshi:0.21.2(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:46, height=719468}: New peer      (7 connected, 0 pending, 7 max) 
jan.-19 12:55:46.920 [BlockingClient network thread for rfqmn3qe36uaptkxhdvi74p4hyrzhir6vhmzb2hqryxodig4gue2zbyd.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[rfqmn3qe36uaptkxhdvi74p4hyrzhir6vhmzb2hqryxodig4gue2zbyd.onion]:8333, version=70016, subVer=/Satoshi:0.21.2(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:46, height=719468}: Sending Bloom filter and querying mempool 
jan.-19 12:55:47.847 [BlockingClient network thread for rfqmn3qe36uaptkxhdvi74p4hyrzhir6vhmzb2hqryxodig4gue2zbyd.onion/<unresolved>:8333] INFO  o.b.core.Peer: Peer{[rfqmn3qe36uaptkxhdvi74p4hyrzhir6vhmzb2hqryxodig4gue2zbyd.onion]:8333, version=70016, subVer=/Satoshi:0.21.2(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:46, height=719468}: Announced fee filter: 0.00001 BTC/kB 
jan.-19 12:55:55.587 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:55:57.476 [TorControlParser] INFO  o.b.n.tor.Tor: Hidden Service uo2ulv3skbl7z27ow53iu3cecf2uqbvgjz5qeyp43zje77meydpyj3yd.onion has been announced to the Tor network. 
jan.-19 12:56:41.799 [NetworkNode:SendMessage-to-d55zx5pwq3yr5wqsuvohunuahlpenvv5qmbys4bryxsfjewsptpgruid.onion:9999] INFO  b.n.p.n.NetworkNode: Socket creation to peersNodeAddress d55zx5pwq3yr5wqsuvohunuahlpenvv5qmbys4bryxsfjewsptpgruid.onion:9999 took 20343 ms 
jan.-19 12:56:41.810 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: Num of latestLivePeers=1 
jan.-19 12:56:51.819 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: We have 2 connections open. Our limit is 12 
jan.-19 12:56:55.937 [NetworkNode:SendMessage-to-4pzddr4vs62nabtmb6vly6k7d576ebhfpu346fti5l5wylwaesmxgrqd.onion:9999] INFO  b.n.p.n.NetworkNode: Socket creation to peersNodeAddress 4pzddr4vs62nabtmb6vly6k7d576ebhfpu346fti5l5wylwaesmxgrqd.onion:9999 took 11478 ms 
jan.-19 12:56:55.947 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: Num of latestLivePeers=2 
jan.-19 12:57:05.926 [JavaFX Application Thread] INFO  b.c.util.GcUtil: GC reduced memory by 746 MB. Total memory before/after: 1,131 GB/412 MB. Free memory: 44,401 MB. Took 355 ms. Total GC invocations: 1 / Total GC time 0.355 sec 
jan.-19 12:57:05.961 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: We have 3 connections open. Our limit is 12 
jan.-19 12:57:17.901 [NetworkNode:SendMessage-to-u64gt7eyey7kw4xotpzjvcedlgda23yg53iq66ajltj73gq2wioh3yqd.onion:9999] INFO  b.n.p.n.NetworkNode: Socket creation to peersNodeAddress u64gt7eyey7kw4xotpzjvcedlgda23yg53iq66ajltj73gq2wioh3yqd.onion:9999 took 19981 ms 
jan.-19 12:57:17.918 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: Num of latestLivePeers=3 
jan.-19 12:57:27.934 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: We have 4 connections open. Our limit is 12 
jan.-19 12:57:33.828 [NetworkNode:SendMessage-to-uf7iumk5vslqpr7uzdri3uufr23t55n7bw7e2ubmke5p5fvwi5f6o7yd.onion:9999] INFO  b.n.p.n.NetworkNode: Socket creation to peersNodeAddress uf7iumk5vslqpr7uzdri3uufr23t55n7bw7e2ubmke5p5fvwi5f6o7yd.onion:9999 took 14359 ms 
jan.-19 12:57:33.836 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: Num of latestLivePeers=4 
jan.-19 12:57:43.850 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: We have 5 connections open. Our limit is 12 
jan.-19 12:57:51.030 [NetworkNode:SendMessage-to-5kru4ypfkeea7hakusr5c6b33zqdailtjljydxpv6ydf37eit4ts5myd.onion:9999] INFO  b.n.p.n.NetworkNode: Socket creation to peersNodeAddress 5kru4ypfkeea7hakusr5c6b33zqdailtjljydxpv6ydf37eit4ts5myd.onion:9999 took 16125 ms 
jan.-19 12:57:51.036 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: Num of latestLivePeers=5 
jan.-19 12:58:01.046 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: We have 6 connections open. Our limit is 12 
jan.-19 12:58:01.885 [NetworkNode:SendMessage-to-6fh3ugknzioakjka6mo2bmtkax7qhjm5pxnjoi53uybqgbq5qnbco3ad.onion:9999] INFO  b.n.p.n.NetworkNode: Socket creation to peersNodeAddress 6fh3ugknzioakjka6mo2bmtkax7qhjm5pxnjoi53uybqgbq5qnbco3ad.onion:9999 took 9453 ms 
jan.-19 12:58:01.891 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: Num of latestLivePeers=6 
jan.-19 12:58:11.897 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: We have 7 connections open. Our limit is 12 
jan.-19 12:58:12.377 [NetworkNode:SendMessage-to-67bzbxswu6enyd6pfmtasszpz65i5vnmmpy2oyflydlji3j7kzl7xgyd.onion:9999] INFO  b.n.p.n.NetworkNode: Socket creation to peersNodeAddress 67bzbxswu6enyd6pfmtasszpz65i5vnmmpy2oyflydlji3j7kzl7xgyd.onion:9999 took 9348 ms 
jan.-19 12:58:12.385 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: Num of latestLivePeers=7 
jan.-19 12:58:17.694 [JavaFX Application Thread] INFO  b.n.p.p.g.RequestDataHandler: A timeout occurred at sending getDataRequest:PreliminaryGetDataRequest(supportedCapabilities=[0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]) on nodeAddress:sn3emzy56u3mxzsr4geysc52feoq5qt7ja56km6gygwnszkshunn2sid.onion:8000 
jan.-19 12:58:17.701 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 10869 entries from SignedWitnessStorageService to the excluded key set of our request 
jan.-19 12:58:17.750 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 53059 entries from AccountAgeWitnessStorageService to the excluded key set of our request 
jan.-19 12:58:17.750 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 0 entries from TradeStatistics2StorageService to the excluded key set of our request 
jan.-19 12:58:17.751 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 6216 entries from TradeStatistics3StorageService to the excluded key set of our request 
jan.-19 12:58:17.751 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 829 entries from ProposalStorageService to the excluded key set of our request 
jan.-19 12:58:17.751 [JavaFX Application Thread] INFO  b.n.p.s.P2PDataStorage: We added 445 entries from BlindVoteStorageService to the excluded key set of our request 
jan.-19 12:58:17.762 [JavaFX Application Thread] INFO  b.n.p.p.g.RequestDataHandler: We send a PreliminaryGetDataRequest to peer wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000.  
jan.-19 12:58:18.880 [NetworkNode:SendMessage-to-wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000] INFO  b.n.p.n.NetworkNode: Socket creation to peersNodeAddress wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000 took 1118 ms 
jan.-19 12:58:18.926 [NetworkNode:SendMessage-to-wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000] INFO  b.n.p.p.g.m.PreliminaryGetDataRequest: Sending a PreliminaryGetDataRequest with 1611.053 kB and 72589 excluded key entries. Requesters version=1.8.0 
jan.-19 12:58:18.933 [pool-20-thread-1] INFO  b.n.p.p.g.m.PreliminaryGetDataRequest: Sending a PreliminaryGetDataRequest with 1611.053 kB and 72589 excluded key entries. Requesters version=1.8.0 
jan.-19 12:58:22.400 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: We have 9 connections open. Our limit is 12 
jan.-19 12:58:26.852 [BlockingClient network thread for azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion/<unresolved>:8333] INFO  o.b.c.l.DownloadProgressTracker: Chain download 100% done with 0 blocks to go, block date 2022-01-19T15:58:18Z 
jan.-19 12:58:28.815 [InputHandler-wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000] INFO  b.n.p.n.Connection: Connection shutdown started 
jan.-19 12:58:28.816 [InputHandler-wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000] INFO  b.n.p.n.Connection: Connection doShutDown started 
jan.-19 12:58:28.818 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: onDisconnect called: nodeAddress=Optional[wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000], closeConnectionReason=CloseConnectionReason{sendCloseMessage=false, isIntended=true} CLOSE_REQUESTED_BY_PEER 
jan.-19 12:58:28.819 [JavaFX Application Thread] INFO  b.n.p.p.p.PeerExchangeManager: onDisconnect closeConnectionReason=CloseConnectionReason{sendCloseMessage=false, isIntended=true} CLOSE_REQUESTED_BY_PEER, nodeAddressOpt=Optional[wizseed3d376esppbmbjxk2fhk2jg5fpucddrzj2kxtbxbx4vrnwclad.onion:8000] 
jan.-19 12:58:31.852 [Wallet autosave thread] INFO  o.b.w.WalletFiles: Background saving wallet; last seen block is height 719469, date 2022-01-19T15:58:18Z, hash 000000000000000000047610ad66a59b4ecbf462179463e6e3576c89ae817067 
jan.-19 12:58:31.852 [Wallet autosave thread] INFO  o.b.w.WalletFiles: Background saving wallet; last seen block is height 719469, date 2022-01-19T15:58:18Z, hash 000000000000000000047610ad66a59b4ecbf462179463e6e3576c89ae817067 
jan.-19 12:58:31.902 [Wallet autosave thread] INFO  o.b.w.WalletFiles: Save completed in 49.46 ms 
jan.-19 12:58:31.905 [Wallet autosave thread] INFO  o.b.w.WalletFiles: Save completed in 52.71 ms 
jan.-19 12:58:48.408 [InputHandler-sn3emzy56u3mxzsr4geysc52feoq5qt7ja56km6gygwnszkshunn2sid.onion:8000] INFO  b.n.p.p.g.m.GetDataResponse: Received a GetDataResponse with 2,766 MB 
jan.-19 12:59:10.134 [JavaFX Application Thread] WARN  b.c.a.BisqSetup: startupTimeout called 
jan.-19 12:59:10.134 [JavaFX Application Thread] INFO  b.c.a.BisqSetup: Set log level for org.berndpruenster.netlayer classes to DEBUG to show more details for Tor network connection issues 
jan.-19 12:59:13.668 [InputHandler-sn3emzy56u3mxzsr4geysc52feoq5qt7ja56km6gygwnszkshunn2sid.onion:8000] INFO  b.n.p.n.Connection: Connection shutdown started 
jan.-19 12:59:13.669 [InputHandler-sn3emzy56u3mxzsr4geysc52feoq5qt7ja56km6gygwnszkshunn2sid.onion:8000] INFO  b.n.p.n.Connection: Connection doShutDown started 
jan.-19 12:59:13.672 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: onDisconnect called: nodeAddress=Optional[sn3emzy56u3mxzsr4geysc52feoq5qt7ja56km6gygwnszkshunn2sid.onion:8000], closeConnectionReason=CloseConnectionReason{sendCloseMessage=false, isIntended=true} CLOSE_REQUESTED_BY_PEER 
jan.-19 12:59:13.673 [JavaFX Application Thread] INFO  b.n.p.p.p.PeerExchangeManager: onDisconnect closeConnectionReason=CloseConnectionReason{sendCloseMessage=false, isIntended=true} CLOSE_REQUESTED_BY_PEER, nodeAddressOpt=Optional[sn3emzy56u3mxzsr4geysc52feoq5qt7ja56km6gygwnszkshunn2sid.onion:8000] 
jan.-19 12:59:13.873 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 56 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$03910F285A33F365838EC66EF2C2EF754D046760~operator,$B4AC1B8E5C8A0041AD537A3F53D2A02F2C3C7DAD~madswitch 
jan.-19 12:59:24.187 [NetworkNode:SendMessage-to-iczzbnlp32vrtklb6eur7pmvng2f2zyamb4p4mcdesfwonr77jwekkyd.onion:9999] DEBUG o.b.n.tor.Tor: trying to connect to iczzbnlp32vrtklb6eur7pmvng2f2zyamb4p4mcdesfwonr77jwekkyd.onion:9999 
jan.-19 12:59:24.188 [NetworkNode:SendMessage-to-iczzbnlp32vrtklb6eur7pmvng2f2zyamb4p4mcdesfwonr77jwekkyd.onion:9999] DEBUG o.b.n.tor.Tor: got proxy localhost:35925	Version 5 
jan.-19 12:59:24.202 [TorControlParser] DEBUG o.b.n.tor.Tor: hiddenService: HS_DESC REQUESTED iczzbnlp32vrtklb6eur7pmvng2f2zyamb4p4mcdesfwonr77jwekkyd NO_AUTH $28FDCC237E83C4EF83376336DB960D11D49FA756~Unnamed NP/I96rxZxMDkfQZ52+Oex5YuAaZsvgU4BfVzHIAS2E HSDIR_INDEX=7841C78BDC67F6319CF99C22918ADB359240355B0F87A4894872D33FC592AB38 
jan.-19 12:59:24.571 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 95 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$63540827C4832D214984EA47B7A68C593F9F862F~Unnamed,$938588DFA0CA1702C4BFEF88886918C944D494A6~Perun1in1,$28FDCC237E83C4EF83376336DB960D11D49FA756~Unnamed 
jan.-19 12:59:24.571 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 95 BUILT $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$63540827C4832D214984EA47B7A68C593F9F862F~Unnamed,$938588DFA0CA1702C4BFEF88886918C944D494A6~Perun1in1,$28FDCC237E83C4EF83376336DB960D11D49FA756~Unnamed 
jan.-19 12:59:24.743 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 98 LAUNCHED  
jan.-19 12:59:25.245 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 98 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15 
jan.-19 12:59:25.246 [TorControlParser] DEBUG o.b.n.tor.Tor: hiddenService: HS_DESC RECEIVED iczzbnlp32vrtklb6eur7pmvng2f2zyamb4p4mcdesfwonr77jwekkyd NO_AUTH $28FDCC237E83C4EF83376336DB960D11D49FA756~Unnamed NP/I96rxZxMDkfQZ52+Oex5YuAaZsvgU4BfVzHIAS2E 
jan.-19 12:59:25.247 [TorControlParser] DEBUG o.b.n.tor.Tor: hiddenService: HS_DESC_CONTENT NP/I96rxZxMDkfQZ52+Oex5YuAaZsvgU4BfVzHIAS2E NO_DESCRIPTOR, as in iczzbnlp32vrtklb6eur7pmvng2f2zyamb4p4mcdesfwonr77jwekkyd NP/I96rxZxMDkfQZ52+Oex5YuAaZsvgU4BfVzHIAS2E $28FDCC237E83C4EF83376336DB960D11D49FA756~Unnamed 
jan.-19 12:59:25.247 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 96 BUILT $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$CFC9F9CE22B49A732B317D9DADCC5379BD1D8F5F~Shohki,$3E04505D362AA324E6E4E1C8516CCD9EF4D41B9C~mephisto 
jan.-19 12:59:25.745 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 99 LAUNCHED  
jan.-19 12:59:25.777 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 98 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$1CDCB48F64E21D5ACAFE2471912E2E76F600EDFA~drkhsh 
jan.-19 12:59:26.061 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 97 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$91339550E22DEA6E14DD8C33DECC8702E500C66C~ArchyLinode,$F7B8A4B5F16ECDF6CA626F96F4E3C219D1A664EC~kerneloopsRelay,$55FBCC5A40A8CED2159C3D2EF1CCF672A450FB22~Umi 
jan.-19 12:59:26.061 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 97 BUILT $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$91339550E22DEA6E14DD8C33DECC8702E500C66C~ArchyLinode,$F7B8A4B5F16ECDF6CA626F96F4E3C219D1A664EC~kerneloopsRelay,$55FBCC5A40A8CED2159C3D2EF1CCF672A450FB22~Umi 
jan.-19 12:59:26.370 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 99 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15 
jan.-19 12:59:26.370 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 98 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$1CDCB48F64E21D5ACAFE2471912E2E76F600EDFA~drkhsh,$E612306325AE03F0C82C290ACAFB8C724A8B5B91~theark2 
jan.-19 12:59:26.370 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 98 BUILT $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$1CDCB48F64E21D5ACAFE2471912E2E76F600EDFA~drkhsh,$E612306325AE03F0C82C290ACAFB8C724A8B5B91~theark2 
jan.-19 12:59:26.745 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 100 LAUNCHED  
jan.-19 12:59:26.982 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 97 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$91339550E22DEA6E14DD8C33DECC8702E500C66C~ArchyLinode,$F7B8A4B5F16ECDF6CA626F96F4E3C219D1A664EC~kerneloopsRelay,$55FBCC5A40A8CED2159C3D2EF1CCF672A450FB22~Umi 
jan.-19 12:59:27.189 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 99 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$64AA93E756261D1048A3989C42DA557F0C19296B~lmtor8 
jan.-19 12:59:27.494 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 100 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15 
jan.-19 12:59:27.801 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 99 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$64AA93E756261D1048A3989C42DA557F0C19296B~lmtor8,$6D6EC2A2E2ED8BFF2D4834F8D669D82FC2A9FA8D~ForPrivacyNET 
jan.-19 12:59:27.802 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 99 BUILT $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$64AA93E756261D1048A3989C42DA557F0C19296B~lmtor8,$6D6EC2A2E2ED8BFF2D4834F8D669D82FC2A9FA8D~ForPrivacyNET 
jan.-19 12:59:28.254 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 100 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$3FFDFB5A9A278C7C303745606DB5B68FC5B9FADF~Unnamed 
jan.-19 12:59:28.255 [NetworkNode:SendMessage-to-iczzbnlp32vrtklb6eur7pmvng2f2zyamb4p4mcdesfwonr77jwekkyd.onion:9999] DEBUG o.b.n.tor.Tor: Took 4067ms to connect to iczzbnlp32vrtklb6eur7pmvng2f2zyamb4p4mcdesfwonr77jwekkyd.onion:9999 
jan.-19 12:59:28.255 [NetworkNode:SendMessage-to-iczzbnlp32vrtklb6eur7pmvng2f2zyamb4p4mcdesfwonr77jwekkyd.onion:9999] INFO  b.n.p.n.NetworkNode: Socket creation to peersNodeAddress iczzbnlp32vrtklb6eur7pmvng2f2zyamb4p4mcdesfwonr77jwekkyd.onion:9999 took 4068 ms 
jan.-19 12:59:28.272 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: Num of latestLivePeers=8 
jan.-19 12:59:28.620 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 100 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$3FFDFB5A9A278C7C303745606DB5B68FC5B9FADF~Unnamed,$8FD3BAF5E14EBE1124D6253D59882AFE1C2B9B8E~TOR2DFN02a 
jan.-19 12:59:28.621 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 100 BUILT $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$3FFDFB5A9A278C7C303745606DB5B68FC5B9FADF~Unnamed,$8FD3BAF5E14EBE1124D6253D59882AFE1C2B9B8E~TOR2DFN02a 
jan.-19 12:59:38.287 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: We have 8 connections open. Our limit is 12 
jan.-19 13:00:06.334 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: Connection statistics: 

Connection 1
Age: 3 minutes, 24.491 seconds
Peer: d55zx5pwq3yr5wqsuvohunuahlpenvv5qmbys4bryxsfjewsptpgruid.onion:9999 
Type: PEER 
Direction: Outbound
UID: baf3166a-34fd-4dd8-b509-fe04ed16bd54
Time since last message: 18.519 seconds
Sent data: 29,225 kB; {AddDataMessage=15, AddPersistableNetworkPayloadMessage=2, GetPeersRequest=1, BundleOfEnvelopes=4}
Received data: 56,859 kB; {AddDataMessage=18, NewDaoStateHashMessage=1, AddPersistableNetworkPayloadMessage=2, GetPeersResponse=1, RefreshOfferMessage=155, RemoveDataMessage=1, NewBlockBroadcastMessage=1}
CPU time spent on sending messages: 0.149 seconds
CPU time spent on receiving messages: 0.521 seconds

Connection 2
Age: 3 minutes, 10.378 seconds
Peer: 4pzddr4vs62nabtmb6vly6k7d576ebhfpu346fti5l5wylwaesmxgrqd.onion:9999 
Type: PEER 
Direction: Outbound
UID: 46b248bf-593e-4473-8784-01d0b797c8b5
Time since last message: 17.411 seconds
Sent data: 31,227 kB; {AddDataMessage=15, AddPersistableNetworkPayloadMessage=2, RemoveDataMessage=1, GetPeersRequest=1, BundleOfEnvelopes=5}
Received data: 49,73 kB; {AddDataMessage=17, NewDaoStateHashMessage=1, AddPersistableNetworkPayloadMessage=1, GetPeersResponse=1, RefreshOfferMessage=115, NewBlockBroadcastMessage=1}
CPU time spent on sending messages: 0.146 seconds
CPU time spent on receiving messages: 0.322 seconds

Connection 3
Age: 2 minutes, 48.416 seconds
Peer: u64gt7eyey7kw4xotpzjvcedlgda23yg53iq66ajltj73gq2wioh3yqd.onion:9999 
Type: PEER 
Direction: Outbound
UID: 1d469012-3890-4726-828d-931d6ee9650d
Time since last message: 10.764 seconds
Sent data: 21,775 kB; {AddDataMessage=11, AddPersistableNetworkPayloadMessage=1, GetPeersRequest=1, BundleOfEnvelopes=4}
Received data: 47,741 kB; {AddDataMessage=16, NewDaoStateHashMessage=1, AddPersistableNetworkPayloadMessage=3, GetPeersResponse=1, RefreshOfferMessage=125, NewBlockBroadcastMessage=1}
CPU time spent on sending messages: 0.107 seconds
CPU time spent on receiving messages: 0.346 seconds

Connection 4
Age: 2 minutes, 32.491 seconds
Peer: uf7iumk5vslqpr7uzdri3uufr23t55n7bw7e2ubmke5p5fvwi5f6o7yd.onion:9999 
Type: PEER 
Direction: Outbound
UID: fb57ce36-6f65-4c20-a2d3-4c651a58661f
Time since last message: 11.565 seconds
Sent data: 21,936 kB; {AddDataMessage=11, AddPersistableNetworkPayloadMessage=2, GetPeersRequest=1, BundleOfEnvelopes=3}
Received data: 51,673 kB; {AddDataMessage=17, NewDaoStateHashMessage=1, AddPersistableNetworkPayloadMessage=2, GetPeersResponse=1, RefreshOfferMessage=134, NewBlockBroadcastMessage=1}
CPU time spent on sending messages: 0.115 seconds
CPU time spent on receiving messages: 0.417 seconds

Connection 5
Age: 2 minutes, 15.292 seconds
Peer: 5kru4ypfkeea7hakusr5c6b33zqdailtjljydxpv6ydf37eit4ts5myd.onion:9999 
Type: PEER 
Direction: Outbound
UID: 966cc9c4-b96a-4ce0-b27d-686600de7491
Time since last message: 8.085 seconds
Sent data: 26,596 kB; {AddDataMessage=14, AddPersistableNetworkPayloadMessage=3, GetPeersRequest=1, BundleOfEnvelopes=5}
Received data: 30,854 kB; {AddDataMessage=9, NewDaoStateHashMessage=1, AddPersistableNetworkPayloadMessage=1, GetPeersResponse=1, RefreshOfferMessage=95}
CPU time spent on sending messages: 0.115 seconds
CPU time spent on receiving messages: 0.206 seconds

Connection 6
Age: 2 minutes, 4.441 seconds
Peer: 6fh3ugknzioakjka6mo2bmtkax7qhjm5pxnjoi53uybqgbq5qnbco3ad.onion:9999 
Type: PEER 
Direction: Outbound
UID: 217bca52-5dc6-4d06-95eb-79c992fa53e2
Time since last message: 0.932 seconds
Sent data: 29,626 kB; {AddDataMessage=15, AddPersistableNetworkPayloadMessage=2, GetPeersRequest=1, BundleOfEnvelopes=5}
Received data: 39,578 kB; {AddDataMessage=13, NewDaoStateHashMessage=1, AddPersistableNetworkPayloadMessage=2, GetPeersResponse=1, RefreshOfferMessage=83, NewBlockBroadcastMessage=1, RemoveDataMessage=2}
CPU time spent on sending messages: 0.113 seconds
CPU time spent on receiving messages: 0.357 seconds

Connection 7
Age: 1 minute, 53.951 seconds
Peer: 67bzbxswu6enyd6pfmtasszpz65i5vnmmpy2oyflydlji3j7kzl7xgyd.onion:9999 
Type: PEER 
Direction: Outbound
UID: 60af126d-babd-4735-b6de-d8678a6e6b30
Time since last message: 9.441 seconds
Sent data: 27,88 kB; {AddDataMessage=14, AddPersistableNetworkPayloadMessage=2, GetPeersRequest=1, BundleOfEnvelopes=5}
Received data: 29,586 kB; {AddDataMessage=11, NewDaoStateHashMessage=1, GetPeersResponse=1, RefreshOfferMessage=63, NewBlockBroadcastMessage=1}
CPU time spent on sending messages: 0.132 seconds
CPU time spent on receiving messages: 0.147 seconds

Connection 8
Age: 38.075 seconds
Peer: iczzbnlp32vrtklb6eur7pmvng2f2zyamb4p4mcdesfwonr77jwekkyd.onion:9999 
Type: PEER 
Direction: Outbound
UID: 992aec74-b2ad-4710-9254-09425de783a7
Time since last message: 9.240 seconds
Sent data: 6,164 kB; {AddDataMessage=3, GetPeersRequest=1, BundleOfEnvelopes=1}
Received data: 4,221 kB; {AddDataMessage=1, GetPeersResponse=1, RefreshOfferMessage=10}
CPU time spent on sending messages: 0.047 seconds
CPU time spent on receiving messages: 0.042 seconds
 
jan.-19 13:00:29.223 [JavaFX Application Thread] INFO  b.n.p.n.Statistic: Accumulated network statistics:
Bytes sent: 4,886 MB;
Number of sent messages/Sent messages: 99 / {PreliminaryGetDataRequest=3, AddDataMessage=23, AddPersistableNetworkPayloadMessage=7, Ping=1, RemoveDataMessage=3, GetPeersRequest=8, BundleOfEnvelopes=54};
Number of sent messages per sec: 0.33;
Bytes received: 3,112 MB
Number of received messages/Received messages: 236 / {NewDaoStateHashMessage=5, AddPersistableNetworkPayloadMessage=1, GetPeersResponse=8, RefreshOfferMessage=35, GetDataResponse=1, CloseConnectionMessage=3, NewBlockBroadcastMessage=2, Pong=1, BundleOfEnvelopes=180};
Number of received messages per sec: 0.7866666666666666;
 
jan.-19 13:00:50.756 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 99 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$64AA93E756261D1048A3989C42DA557F0C19296B~lmtor8,$6D6EC2A2E2ED8BFF2D4834F8D669D82FC2A9FA8D~ForPrivacyNET,$7E32B7433D6D46F83F4DB9ACEECEEC254E3652D4~Kit 
jan.-19 13:00:50.756 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 99 BUILT $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$64AA93E756261D1048A3989C42DA557F0C19296B~lmtor8,$6D6EC2A2E2ED8BFF2D4834F8D669D82FC2A9FA8D~ForPrivacyNET,$7E32B7433D6D46F83F4DB9ACEECEEC254E3652D4~Kit 
jan.-19 13:00:50.774 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 101 LAUNCHED  
jan.-19 13:00:51.678 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 101 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15 
jan.-19 13:00:52.127 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 101 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$6AD59F2DA87F44532D0B472407481AB4F9A9DC4B~lmtor1 
jan.-19 13:00:52.435 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 101 EXTENDED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$6AD59F2DA87F44532D0B472407481AB4F9A9DC4B~lmtor1,$79E3B585803DE805CCBC00C1EF36B1E74372861D~udeserveprivacy 
jan.-19 13:00:52.435 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 101 BUILT $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$6AD59F2DA87F44532D0B472407481AB4F9A9DC4B~lmtor1,$79E3B585803DE805CCBC00C1EF36B1E74372861D~udeserveprivacy 
jan.-19 13:00:53.034 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: Num of latestLivePeers=9 
jan.-19 13:01:01.829 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: We have 9 connections open. Our limit is 12 
jan.-19 13:01:58.023 [Wallet autosave thread] INFO  o.b.w.WalletFiles: Background saving wallet; last seen block is height 719470, date 2022-01-19T16:01:39Z, hash 00000000000000000006b62a1a070ac7a9f9c7cf65f4f165f3bc84b5b344f990 
jan.-19 13:01:58.024 [Wallet autosave thread] INFO  o.b.w.WalletFiles: Background saving wallet; last seen block is height 719470, date 2022-01-19T16:01:39Z, hash 00000000000000000006b62a1a070ac7a9f9c7cf65f4f165f3bc84b5b344f990 
jan.-19 13:01:58.050 [Wallet autosave thread] INFO  o.b.w.WalletFiles: Save completed in 26.02 ms 
jan.-19 13:01:58.053 [Wallet autosave thread] INFO  o.b.w.WalletFiles: Save completed in 28.95 ms 
jan.-19 13:05:05.567 [JavaFX Application Thread] INFO  b.c.u.Profiler: Total memory: 442 MB; Used memory: 399,34 MB; Free memory: 42,66 MB; Max memory: 2 GB; No. of threads: 51 
jan.-19 13:05:06.301 [JavaFX Application Thread] INFO  b.n.p.p.PeerManager: Connection statistics: 

Connection 1
Age: 8 minutes, 24.483 seconds
Peer: d55zx5pwq3yr5wqsuvohunuahlpenvv5qmbys4bryxsfjewsptpgruid.onion:9999 
Type: PEER 
Direction: Outbound
UID: baf3166a-34fd-4dd8-b509-fe04ed16bd54
Time since last message: 0.287 seconds
Sent data: 428,845 kB; {AddDataMessage=221, AddPersistableNetworkPayloadMessage=9, RefreshOfferMessage=33, RemoveDataMessage=8, GetPeersRequest=1, BundleOfEnvelopes=18}
Received data: 487,607 kB; {AddDataMessage=218, NewDaoStateHashMessage=2, AddPersistableNetworkPayloadMessage=12, GetPeersResponse=1, RefreshOfferMessage=479, RemoveDataMessage=12, NewBlockBroadcastMessage=2}
CPU time spent on sending messages: 0.400 seconds
CPU time spent on receiving messages: 1.601 seconds

Connection 2
Age: 8 minutes, 10.348 seconds
Peer: 4pzddr4vs62nabtmb6vly6k7d576ebhfpu346fti5l5wylwaesmxgrqd.onion:9999 
Type: PEER 
Direction: Outbound
UID: 46b248bf-593e-4473-8784-01d0b797c8b5
Time since last message: 15.974 seconds
Sent data: 415,959 kB; {AddDataMessage=214, AddPersistableNetworkPayloadMessage=10, Ping=1, RefreshOfferMessage=31, RemoveDataMessage=8, GetPeersRequest=1, BundleOfEnvelopes=18}
Received data: 133,164 kB; {AddDataMessage=38, NewDaoStateHashMessage=2, AddPersistableNetworkPayloadMessage=8, GetPeersResponse=1, RefreshOfferMessage=413, NewBlockBroadcastMessage=2, RemoveDataMessage=5}
CPU time spent on sending messages: 0.399 seconds
CPU time spent on receiving messages: 1.119 seconds

Connection 3
Age: 7 minutes, 48.385 seconds
Peer: u64gt7eyey7kw4xotpzjvcedlgda23yg53iq66ajltj73gq2wioh3yqd.onion:9999 
Type: PEER 
Direction: Outbound
UID: 1d469012-3890-4726-828d-931d6ee9650d
Time since last message: 6.225 seconds
Sent data: 712,121 kB; {AddDataMessage=372, AddPersistableNetworkPayloadMessage=10, RefreshOfferMessage=91, RemoveDataMessage=6, GetPeersRequest=1, BundleOfEnvelopes=22}
Received data: 450,15 kB; {AddDataMessage=212, NewDaoStateHashMessage=2, AddPersistableNetworkPayloadMessage=10, GetPeersResponse=1, RefreshOfferMessage=380, NewBlockBroadcastMessage=2, RemoveDataMessage=5}
CPU time spent on sending messages: 0.363 seconds
CPU time spent on receiving messages: 1.136 seconds

Connection 4
Age: 7 minutes, 32.459 seconds
Peer: uf7iumk5vslqpr7uzdri3uufr23t55n7bw7e2ubmke5p5fvwi5f6o7yd.onion:9999 
Type: PEER 
Direction: Outbound
UID: fb57ce36-6f65-4c20-a2d3-4c651a58661f
Time since last message: 6.560 seconds
Sent data: 442,794 kB; {AddDataMessage=222, AddPersistableNetworkPayloadMessage=11, RefreshOfferMessage=84, RemoveDataMessage=11, GetPeersRequest=1, BundleOfEnvelopes=23}
Received data: 444,45 kB; {AddDataMessage=206, NewDaoStateHashMessage=2, AddPersistableNetworkPayloadMessage=9, GetPeersResponse=1, RefreshOfferMessage=437, NewBlockBroadcastMessage=1, RemoveDataMessage=4}
CPU time spent on sending messages: 0.497 seconds
CPU time spent on receiving messages: 1.497 seconds

Connection 5
Age: 7 minutes, 15.259 seconds
Peer: 5kru4ypfkeea7hakusr5c6b33zqdailtjljydxpv6ydf37eit4ts5myd.onion:9999 
Type: PEER 
Direction: Outbound
UID: 966cc9c4-b96a-4ce0-b27d-686600de7491
Time since last message: 6.012 seconds
Sent data: 719,122 kB; {AddDataMessage=375, AddPersistableNetworkPayloadMessage=11, RefreshOfferMessage=86, RemoveDataMessage=10, GetPeersRequest=1, BundleOfEnvelopes=24}
Received data: 393,227 kB; {AddDataMessage=179, NewDaoStateHashMessage=2, AddPersistableNetworkPayloadMessage=6, GetPeersResponse=1, RefreshOfferMessage=408, RemoveDataMessage=6}
CPU time spent on sending messages: 0.470 seconds
CPU time spent on receiving messages: 0.794 seconds

Connection 6
Age: 7 minutes, 4.406 seconds
Peer: 6fh3ugknzioakjka6mo2bmtkax7qhjm5pxnjoi53uybqgbq5qnbco3ad.onion:9999 
Type: PEER 
Direction: Outbound
UID: 217bca52-5dc6-4d06-95eb-79c992fa53e2
Time since last message: 3.047 seconds
Sent data: 120,733 kB; {AddDataMessage=54, AddPersistableNetworkPayloadMessage=9, RefreshOfferMessage=51, RemoveDataMessage=8, GetPeersRequest=1, BundleOfEnvelopes=17}
Received data: 775,577 kB; {AddDataMessage=380, NewDaoStateHashMessage=2, AddPersistableNetworkPayloadMessage=8, GetPeersResponse=1, RefreshOfferMessage=485, NewBlockBroadcastMessage=2, RemoveDataMessage=7}
CPU time spent on sending messages: 0.370 seconds
CPU time spent on receiving messages: 1.404 seconds

Connection 7
Age: 6 minutes, 53.916 seconds
Peer: 67bzbxswu6enyd6pfmtasszpz65i5vnmmpy2oyflydlji3j7kzl7xgyd.onion:9999 
Type: PEER 
Direction: Outbound
UID: 60af126d-babd-4735-b6de-d8678a6e6b30
Time since last message: 6.466 seconds
Sent data: 732,392 kB; {AddDataMessage=383, AddPersistableNetworkPayloadMessage=10, RefreshOfferMessage=74, RemoveDataMessage=8, GetPeersRequest=1, BundleOfEnvelopes=23}
Received data: 109,108 kB; {AddDataMessage=28, NewDaoStateHashMessage=2, AddPersistableNetworkPayloadMessage=5, GetPeersResponse=1, RefreshOfferMessage=392, NewBlockBroadcastMessage=2, RemoveDataMessage=4}
CPU time spent on sending messages: 0.513 seconds
CPU time spent on receiving messages: 0.846 seconds

Connection 8
Age: 5 minutes, 38.040 seconds
Peer: iczzbnlp32vrtklb6eur7pmvng2f2zyamb4p4mcdesfwonr77jwekkyd.onion:9999 
Type: PEER 
Direction: Outbound
UID: 992aec74-b2ad-4710-9254-09425de783a7
Time since last message: 6.051 seconds
Sent data: 700,795 kB; {AddDataMessage=364, AddPersistableNetworkPayloadMessage=8, RefreshOfferMessage=86, RemoveDataMessage=10, GetPeersRequest=1, BundleOfEnvelopes=18}
Received data: 364,36 kB; {AddDataMessage=177, NewDaoStateHashMessage=1, AddPersistableNetworkPayloadMessage=6, GetPeersResponse=1, RefreshOfferMessage=172, RemoveDataMessage=8, NewBlockBroadcastMessage=1}
CPU time spent on sending messages: 0.380 seconds
CPU time spent on receiving messages: 0.629 seconds

Connection 9
Age: 4 minutes, 14.487 seconds
Peer: 5y2b5ws54lqyv3s3mmgr7a6ncz26sykoaaig7c6bs2evxgtguhuv7eqd.onion:9999 
Type: PEER 
Direction: Inbound
UID: 23c1e936-2214-4761-a812-f2b5aaf57a04
Time since last message: 6.387 seconds
Sent data: 673,28 kB; {AddDataMessage=357, AddPersistableNetworkPayloadMessage=3, GetPeersResponse=1, RefreshOfferMessage=52, RemoveDataMessage=5, BundleOfEnvelopes=15}
Received data: 48,512 kB; {AddDataMessage=13, NewDaoStateHashMessage=1, AddPersistableNetworkPayloadMessage=5, RefreshOfferMessage=160, RemoveDataMessage=2, GetPeersRequest=1}
CPU time spent on sending messages: 0.305 seconds
CPU time spent on receiving messages: 0.394 seconds
 
jan.-19 13:05:29.218 [JavaFX Application Thread] INFO  b.n.p.n.Statistic: Accumulated network statistics:
Bytes sent: 9,538 MB;
Number of sent messages/Sent messages: 371 / {PreliminaryGetDataRequest=3, AddDataMessage=93, AddPersistableNetworkPayloadMessage=39, Ping=2, GetPeersResponse=1, RemoveDataMessage=28, GetPeersRequest=8, BundleOfEnvelopes=197};
Number of sent messages per sec: 0.6183333333333333;
Bytes received: 7,546 MB
Number of received messages/Received messages: 657 / {NewDaoStateHashMessage=7, RefreshOfferMessage=74, RemoveDataMessage=4, GetPeersRequest=1, BundleOfEnvelopes=543, AddDataMessage=9, AddPersistableNetworkPayloadMessage=4, GetPeersResponse=8, GetDataResponse=1, NewBlockBroadcastMessage=2, CloseConnectionMessage=3, Pong=1};
Number of received messages per sec: 1.095;
 
jan.-19 13:05:32.635 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 3 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$5692DB8B71BBA5E3C930718BCD676B06E8E2C057~torbird,$1E1BEF2C8E1695AC021C9010425D35080204937B~allstars2,$0516A1A5836825F58848D47B91F47CB593B58D54~fiedlerRelay20 
jan.-19 13:05:32.635 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 4 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$32364BEF873944BE481E8BCC7FAE9297F5F39781~tirz,$91892720F9262CB37B91A7176D3D2280F7AF14BE~chooThaineha,$3AEE7C009789A429D82123DE5FD8B2763B4656F0~Assange037us 
jan.-19 13:05:32.635 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 5 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$7110D0DED7ADFD5B68EE19D218FA3EA03D2F309D~mico,$E36536404200A74930DB165858BD5BB554D2BEA2~naiveTorer,$042BCDF2D36D7AEE070E086DAD4B57F27B2F1143~ecuasterces 
jan.-19 13:05:32.635 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 16 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$A0BD104E35D36F5630B01EB5370597EB09204C99~Strelnikov,$CEDB8AB22915097A3A14F63F28E1E43F86CBECC0~knight,$60FE782DF923698546023C6F14FEC0884624F35C~artikel10ber17 
jan.-19 13:05:32.635 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 17 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$5CB30C264BB9EB17CF2FC6AEB611593B54C371C2~torminator,$E43B42C153E2F4215D581A121B7DAD568FE3DB15~shade,$D1F7BEC34A66498FC565BC05763226915E317F24~Amnesia 
jan.-19 13:05:32.636 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 18 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$4EA8C351DBC9BB1FB5A04AC00314B7165232DF58~uKDbRBw5GFFLYfg4,$9C585AE38D855C0D5C64D4DA1CC6F61C6E7AF642~grshdw,$09DCA3360179C6C8A5A20DDDE1C54662965EF1BA~ageis 
jan.-19 13:05:32.636 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 19 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$7A3E534C033E3836BD5AF223B642853C502AB33A~Unnamed,$1797F3E88F4E8256DB35B744784FA96FC0854A4F~hawk,$2C35DDC128B208C4D903B4791939C34D7DC4176D~narNLicebeer09 
jan.-19 13:05:32.636 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 20 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$3DFA70B5E65EFA8FDA69ABDCAB79D2ED5F2A7464~AN01TOR2,$1188DC549FDF5E8054E1FE8C789A632CD1872F7E~Unnamed,$20462CBA5DA4C2D963567D17D0B7249718114A68~scaletor 
jan.-19 13:05:32.636 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 21 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$D75510F5C9F356554AA47B3FB2283DA479B47574~sa2TRicebeer06b,$51B74A3FEA83B0420CFC80B69B4A14A7AA333A1B~WateryRelay,$E6161DD961CBB382B59EFA78252BC2827C469265~Wakako 
jan.-19 13:05:32.636 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 22 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$0C11FE3E7EF6C8B89911B31A4123808C2D69FFEC~julianrelay,$A8503903F97FF27F5D1C3CA38817329F581925E6~TransRights,$004B438A395C5B7D0EF8FAAE056FA9A1CB7ABB86~Tatita23 
jan.-19 13:05:32.636 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 23 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$F7B8A4B5F16ECDF6CA626F96F4E3C219D1A664EC~kerneloopsRelay,$8A530A9CE2EF8EA7D9E2B496566FD847E76C71E6~0xdeadbeef,$D439FC3B5F0A81796F4622320197A90032CAE4DB~Osterei 
jan.-19 13:05:32.636 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 24 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$84E15024AFB044E99CFBC7023AC7CB47C168E110~PLCNK02,$7931CD2F3A001242D94A3AD75B89469949383280~skankhunt42de3,$410118E874D2263F1CDCD567F81875A8E38B2B3C~W0LFF 
jan.-19 13:05:32.637 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 25 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$34DE7F9028A53D5238D779B00DAF7438FDE1D7A0~ishouldeditheconfi,$408C9D2F1653D9EF3AF139C153CB27E8FFDB7612~muddybits,$EE4AF632058F0734C1426B1AD689F47445CA2056~rinderwahnRelay7L 
jan.-19 13:05:32.637 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 28 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$3BEEDD97C7B00C4BA417A8FAA22F858465E77EBC~DTFNODE38,$42A955B09A4E327FBFB46A08F6E21705271CCA12~0xdeadbeef,$072E2883854ADA0C6B0FC1497544E529D9FD8373~artikel10buc02 
jan.-19 13:05:32.637 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 57 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$51BD782616C3EBA543B0D4EE34D7C1CE1ED2291D~Geodude,$774A36D20AAA6E2A1265AB6E1FFC9B50C95872AB~FASCIA,$438731B8EFEDB1E592C8034934A55F532DEABAA9~WarheadRelay 
jan.-19 13:05:32.675 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 30 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$F11D3A3F40977F8CB9A85B10B4AFDEE3D72E52C6~TheEpicOne,$5006438995AA54DA1DF8E4903555262225601A9E~ShaiHulud,$5C3F3217F99D6CFA711D9415AFED1003971201AF~orwell 
jan.-19 13:05:32.675 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 31 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$B8D45E58E35F62201B906EC927795D33649AC10D~memcpy2,$ACB032FABAE45E9C9123A386BFE7F79C7EE60573~l3,$1DC6E52ADB9FE4346CEFC05C6916D8B8F7F66D1C~eiais 
jan.-19 13:05:32.675 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 32 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$AD217398FA11FFE1D02E46CE5A9C64054F69A1E9~nodv01,$8E76F1F6E8499CCE975C451560586A5F8BF0BFDB~JimmyBulanik,$7336DA3A503D6E8F5BF7E8466F89A0D62397DA9E~LikenessSkinship 
jan.-19 13:05:32.675 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 33 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$593FF36EB917D7D666595EB6F26DFAC362261C23~Tor4edge,$3CDCD71DA0C829641D9DAC603B0E5C4315F14529~neurostar,$7644FDA1919FFDF34C76971A0296DF4DB8B8C596~ecksaopaulo 
jan.-19 13:05:32.675 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 42 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$ED9A731373456FA071C12A3E63E2C8BEF0A6E721~StayStrongRelay01,$BD020D8EDB355C537199420AAF2649FA04536C9A~pluto,$A22B0BD1E50EB5F471B55CFF0047B2AE24AE3604~Dwight 
jan.-19 13:05:32.675 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 43 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$12D552E8AF7AA2B71B218B5BBF6A5FEFA6F26BA0~TOR2DFNrelA,$C883FDB7342BAA6EDEF9CF35DE296F8DA393EDF3~justhelpingout,$60FE782DF923698546023C6F14FEC0884624F35C~artikel10ber17 
jan.-19 13:05:32.676 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 44 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$0C6CA58153400FA077EABB14773E36FD61BF0D75~lamomieauguste,$5889A54CCD68C319F6F8ACEFF81E063E6E84B9BE~trumpet,$BFB14B9ADF1F19E59258CAE7FCDBAAC9937B7B10~Yggdrasil 
jan.-19 13:05:32.676 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 46 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$88CF8D42D49B7C8E9D03ABE5DAE7AF25E9902008~cryzrelay02,$A6D56D2919598C9B81CFDB7FA0434216E6EA308B~Stephen304,$E2B7CE01E2086332986EF6D94F6ECC80A0C4FEF6~terNOicebeer16 
jan.-19 13:05:32.676 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 47 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$AAA44DE0F691AC9A76E711E2AEFB3C84BD927F4E~WorldGate,$9E7C2C6DEDA3A90ED7D43527126AB67936FB038E~Veil,$3225999769FDB9D49F988CCFF87D63FD874D0554~tr3nton 
jan.-19 13:05:32.676 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 48 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$387CFC0B90EACFFE4A80CD8AA057F364E9D1D573~Hydra48,$80280812E45C897F0E06473AE6F3A0487EB2BADB~Andreios4Democracy,$FA5A0820B4D068F37A65B80C9315404553B5A053~torpasta 
jan.-19 13:05:32.676 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 49 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$A7348BE96DF5BD080A9BA6F87454706BFD75371A~StormyCloudInc,$03910F285A33F365838EC66EF2C2EF754D046760~operator,$7A3E534C033E3836BD5AF223B642853C502AB33A~Unnamed 
jan.-19 13:05:32.676 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 50 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$B0B6A5090E0E08067130C7EDAA0EDD55C83FC72C~Heatex,$CCF28BC8FB26C8C172DEE741702056914D2849BD~scator 
jan.-19 13:05:32.676 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 51 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$200473B7974E8D78B75B28DBD6C218DA3A0B8059~DarkRelay,$2EC34ECA8B5CDB181DED6948D8323199A6BBD5EC~as212520,$B92D07225A2E7801572BB5DD48ADDE2E320220E2~x0d0ua 
jan.-19 13:05:32.676 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 53 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$331B505A757341EEF3657D4F64C20BBE70ED199A~MoreSheep,$64AA93E756261D1048A3989C42DA557F0C19296B~lmtor8,$2BAF092E8667C00CA3D9686C76D8EC3CC6BC7C5B~finTor 
jan.-19 13:05:32.676 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 55 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$19E685EE86A504DDDBDF8DF2378A10B9B46CC423~WoweRelay,$3C80D368F796FB32184819EBB2F55A31A0B397F9~carbonitos,$DA8D76F5F5819693B5C96F499BA19F7404014769~z0rb4l2 
jan.-19 13:05:35.997 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 26 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$B5E01B0DA550B15880BF0976AF54B90869C7DB08~CharnoTorEntry,$10F75300112893B6137909584072DECDC309CBFD~DiskDestroyer9000 
jan.-19 13:06:03.744 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 67 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$37EB4C9361D2F80F279B949CB3CB41DA2F46A2FA~ChuckyHorror,$A170153BF63A9D2E2FBCA3FCD867286AC3B80CEA~yournicerelay,$B0CF3131A8097FFAF9E9B54566F12A2C6E560C48~Quetzalcoatl 
jan.-19 13:06:03.744 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 66 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$14308846BD3FF2FB32981F0F0A6BED40F0DC7731~Dalite,$B143D439B72D239A419F8DCE07B8A8EB1B486FA7~wardsback,$64A8837A97AF71775C84DE0EDA94552AAEDC424F~janitormentor 
jan.-19 13:06:03.744 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 61 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$9CAFF57F921A2F0DE602B89E56A838A1E3F52868~bumnak,$53E8C2A1B2A4C8793D1FCB0FD2282BFD0C88BF14~urilikann,$80228AB5CBD0AC7E911E695BCEED8604528FEBCD~MikeDiaIsGone 
jan.-19 13:06:03.744 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 65 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$303509AB910EF207B7438C27435C4A2FD579F1B1~Ukko,$98138DFD3E2C8C89D8F5AB11EF9B6BFF272D83B4~Fission09,$44689828532CCEB9B598E1DABDBE28BD815517EB~eclipse07 
jan.-19 13:06:03.745 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 64 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$37EB4C9361D2F80F279B949CB3CB41DA2F46A2FA~ChuckyHorror,$7A2F23397F4B360652213360EA5C59765911F6F5~straDEicebeer07,$87357FCC2BF2C21F069714381BCA6C3E7EFCBD5D~FissionMasq06 
jan.-19 13:06:03.745 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 63 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$783BEC4F07815D47307676C71D35FC3B7C7A84C8~sikrelay,$99C8B70750FF83A1C46DA9896FF6B6D105495A3C~MKUltra,$BB034C34ED9E60F7709ED93FB432A9BA12A2F2B6~Digitalcourage4ip1b 
jan.-19 13:06:34.752 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 70 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$FEC9872D40C15112A597B65D34CE9EFB1ADE4245~DTFNODE27,$4DB0490A0420809A8149E778BBAC8F1E9349D9EC~Cannoli,$42A51FFF7AB2A2F396CB924B56676F09BCB52245~SoySauceR 
jan.-19 13:06:34.753 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 71 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$87C08DDFD32C62F3C56D371F9774D27BFDBB807B~Unnamed,$4AF891603F7BBDC0857FCACEBA3386CDF0E619EE~tirz,$C40CE018CFEB706547271844BEE4710B5D3A7A0C~Piratenpartei13 
jan.-19 13:06:34.753 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 68 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$D701ACAF86413E92529EA8E32088C7FC45EA6F69~UnivUtah1,$291F60CF0346E8DF0A2D48B498CE44CDF2A9189C~Cobalt,$A027C03F5B1F1A68775F4CB7C024C47F33702088~gg33 
jan.-19 13:06:34.753 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 69 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$F836446663F1EB816F13708955F105D0B2F5C8E0~cyberbits,$91892720F9262CB37B91A7176D3D2280F7AF14BE~chooThaineha,$291F60CF0346E8DF0A2D48B498CE44CDF2A9189C~Cobalt 
jan.-19 13:07:05.757 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 77 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$B26D345D996FB8802DB14282BFE1A249A4049CA5~tsarm,$DB5A100152FB7937F02F00B5DDFFFD012789C242~Schmutzig,$C2EE40EE8451F27C2357E8B1EA1E8E6F642273EB~Bastard 
jan.-19 13:07:05.757 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 74 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$65F86FD8B92C3AC01887D86B2171E657D5C19F79~eclipse03,$FFA72BD683BC2FCF988356E6BEC1E490F313FB07~Lule,$D2F15E74954597E41E155449A0CE9B4DB892DFFD~artikel10ber18 
jan.-19 13:07:24.516 [Wallet autosave thread] INFO  o.b.w.WalletFiles: Background saving wallet; last seen block is height 719471, date 2022-01-19T16:06:52Z, hash 00000000000000000001d2e7a4708f8073f07863453d793452a0b518fd312e6d 
jan.-19 13:07:24.516 [Wallet autosave thread] INFO  o.b.w.WalletFiles: Background saving wallet; last seen block is height 719471, date 2022-01-19T16:06:52Z, hash 00000000000000000001d2e7a4708f8073f07863453d793452a0b518fd312e6d 
jan.-19 13:07:24.537 [Wallet autosave thread] INFO  o.b.w.WalletFiles: Save completed in 21.09 ms 
jan.-19 13:07:24.537 [Wallet autosave thread] INFO  o.b.w.WalletFiles: Save completed in 20.71 ms 
jan.-19 13:07:36.761 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 81 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$8E98DC94F7FE6D36A50B0E30424345C0A99B0B1E~gbt2USicebeer15,$E21336A5D5B02839C63E1F68DC1CE03B067BACC8~MetalRelay,$9314BD9503B9014261A65C221D77E57389DBCCC1~Quintex50 
jan.-19 13:07:36.761 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 78 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$63540827C4832D214984EA47B7A68C593F9F862F~Unnamed,$13FAA909857CC07B2C80435E72DAE4C631AEEB53~lmtor3,$E43B42C153E2F4215D581A121B7DAD568FE3DB15~shade 
jan.-19 13:08:07.764 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 90 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$F5515E6626537A865F99BBFFD646ADC45C1DDDA6~relay,$9EEE861CD8A5FE26A1F276879323172F5B91082C~NixOS,$DE0831E369161F4D4576131E21F8360778FBC9B9~DTFNODE60 
jan.-19 13:08:07.765 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 87 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$0022C7399DE3E5C8F6B74CE2A28399D52726485F~Honorem,$7D31D5118D47BF86C550ABB79EDDE865EC31B67F~21b,$EEBB651CD0F90F675557A8F8725BD4C2C601EEB6~privexrelayde2 
jan.-19 13:08:07.765 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 84 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$F6740DEABFD5F62612FA025A5079EA72846B1F67~poiuty,$B5C44D74017C98E8666DBA6B9D01AF127E21C9C1~Unnamed,$E05CAC929E391787077066C29461A9D22ECF0809~albator 
jan.-19 13:08:38.764 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 92 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$7F302F0AACC76835768AF068849CA07D1CC38C5E~OceanGhost,$71649F93B44956281DBD0312E8812F577C8F473A~X1,$53B8B5C2A33C489B54300D558BFEE2C3B12F3875~2livebrew 
jan.-19 13:08:41.135 [Thread-20] INFO  b.c.a.BisqExecutable: Start graceful shutDown 
jan.-19 13:08:41.149 [Thread-20] INFO  b.c.a.AvoidStandbyModeService: Stopped 
jan.-19 13:08:41.149 [Thread-20] INFO  b.c.a.BisqExecutable: OpenOfferManager shutdown started 
jan.-19 13:08:41.149 [Thread-20] INFO  b.c.o.OpenOfferManager: Remove open offers at shutDown. Number of open offers: 0 
jan.-19 13:08:41.150 [Thread-20] INFO  b.c.a.BisqExecutable: OpenOfferManager shutdown completed 
jan.-19 13:08:41.150 [Thread-20] INFO  b.c.b.s.WalletsSetup: walletsSetup shutDown started 
jan.-19 13:08:41.159 [ STOPPING] INFO  b.c.b.s.WalletConfig: BtcWallet saved to file 
jan.-19 13:08:41.169 [ STOPPING] INFO  b.c.b.s.WalletConfig: BsqWallet saved to file 
jan.-19 13:08:41.170 [ STOPPING] INFO  b.c.b.s.WalletConfig: SPV file closed 
jan.-19 13:08:41.170 [PeerGroup Thread] INFO  o.b.c.PeerGroup: Stopping ... 
jan.-19 13:08:41.170 [ STOPPING] INFO  o.b.c.PeerGroup: Awaiting PeerGroup shutdown ... 
jan.-19 13:08:41.170 [PeerGroup Thread] INFO  o.b.c.PeerGroup: Unsetting download peer: Peer{[azbpsh4arqlm6442wfimy7qr65bmha2zhgjg7wbaji6vvaug53hur2qd.onion]:8333, version=70016, subVer=/Satoshi:0.21.0(@wiz)/, services=1037 (NETWORK, BLOOM, WITNESS, NETWORK_LIMITED), time=2022-01-19 12:55:29, height=719468} 
jan.-19 13:08:41.171 [PeerGroup Thread] INFO  o.b.c.PeerGroup: Stopped, took 1.236 ms. 
jan.-19 13:08:41.175 [ STOPPING] INFO  o.b.c.PeerGroup: ... took 5.291 ms 
jan.-19 13:08:41.175 [ STOPPING] INFO  b.c.b.s.WalletConfig: PeerGroup stopped 
jan.-19 13:08:41.175 [Thread-20] INFO  b.c.b.s.WalletsSetup: walletConfig shutDown completed 
jan.-19 13:08:41.175 [Thread-20] INFO  b.c.a.BisqExecutable: WalletsSetup shutdown completed 
jan.-19 13:08:41.176 [Thread-20] INFO  b.n.p.P2PService: P2PService shutdown started 
jan.-19 13:08:41.176 [Thread-20] INFO  b.n.p.p.Broadcaster: Broadcaster shutdown started 
jan.-19 13:08:41.176 [Thread-20] INFO  b.n.p.p.Broadcaster: Broadcaster doShutDown started 
jan.-19 13:08:41.176 [Thread-20] INFO  b.n.p.P2PService: P2PService doShutDown started 
jan.-19 13:08:41.176 [Thread-20] INFO  b.n.p.n.TorNetworkNode: TorNetworkNode shutdown started 
jan.-19 13:08:41.177 [Thread-20] INFO  b.n.p.n.NetworkNode: NetworkNode shutdown started 
jan.-19 13:08:41.177 [Thread-20] INFO  b.n.p.n.Server: Server shutdown started 
jan.-19 13:08:41.177 [Thread-20] INFO  b.n.p.n.Connection: Connection shutdown started 
jan.-19 13:08:41.178 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 6 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$71649F93B44956281DBD0312E8812F577C8F473A~X1,$312B310556ABF14377AB70F59C7B4FF9EF853699~PornHubPremium 
jan.-19 13:08:41.178 [Thread-20] INFO  b.n.p.n.NetworkNode: Shutdown 9 connections 
jan.-19 13:08:41.178 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 9 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$38B715F758E4F6429907EB352DB6F15419601526~captains2,$736CD23D364941A7C23DE00FD21E44D16B50F388~Unnamed 
jan.-19 13:08:41.178 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 10 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$AC7C0F9D57DADAD5D8F4568EE1543EF3E22A47CE~dotsrcRelay2,$054AF5AE5DA4AA0B81D7155542AF204252CB6D61~HappyChu 
jan.-19 13:08:41.178 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 11 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$8441BEA4057E73E2C9DF82DE61078C88B690760C~chickenlegs2,$C65103F87BACA746E8816B9C6D7AA460DEC0516A~KoenzkTorRelay2 
jan.-19 13:08:41.178 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 12 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$22DA884F355F5107D59C5E736E1052A2F1BA5F91~node05,$A35A0D933BCFFABF0719697BF313270C38F00B1A~UKwillRESIST 
jan.-19 13:08:41.178 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 13 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$3DFA70B5E65EFA8FDA69ABDCAB79D2ED5F2A7464~AN01TOR2,$29C8A52035C68ED34B4D765FBF74B9769E68AB8F~Harksheide 
jan.-19 13:08:41.179 [Thread-20] INFO  b.n.p.n.Connection: Connection shutdown started 
jan.-19 13:08:41.180 [Thread-20] INFO  b.n.p.n.Connection: Connection shutdown started 
jan.-19 13:08:41.180 [Thread-20] INFO  b.n.p.n.Connection: Connection shutdown started 
jan.-19 13:08:41.180 [Thread-20] INFO  b.n.p.n.Connection: Connection shutdown started 
jan.-19 13:08:41.180 [Thread-20] INFO  b.n.p.n.Connection: Connection shutdown started 
jan.-19 13:08:41.180 [Thread-20] INFO  b.n.p.n.Connection: Connection shutdown started 
jan.-19 13:08:41.180 [Thread-20] INFO  b.n.p.n.Connection: Connection shutdown started 
jan.-19 13:08:41.180 [Thread-20] INFO  b.n.p.n.Connection: Connection shutdown started 
jan.-19 13:08:41.180 [JavaFX Application Thread] INFO  b.n.p.n.Connection: Connection doShutDown started 
jan.-19 13:08:41.181 [Thread-20] INFO  b.n.p.n.Connection: Connection shutdown started 
jan.-19 13:08:41.181 [JavaFX Application Thread] INFO  b.n.p.n.NetworkNode: Shutdown of node Optional[5y2b5ws54lqyv3s3mmgr7a6ncz26sykoaaig7c6bs2evxgtguhuv7eqd.onion:9999] completed 
jan.-19 13:08:41.379 [JavaFX Application Thread] INFO  b.n.p.n.Connection: Connection doShutDown started 
jan.-19 13:08:41.380 [JavaFX Application Thread] INFO  b.n.p.n.Connection: Connection doShutDown started 
jan.-19 13:08:41.381 [JavaFX Application Thread] INFO  b.n.p.n.Connection: Connection doShutDown started 
jan.-19 13:08:41.382 [JavaFX Application Thread] INFO  b.n.p.n.Connection: Connection doShutDown started 
jan.-19 13:08:41.385 [JavaFX Application Thread] INFO  b.n.p.n.Connection: Connection doShutDown started 
jan.-19 13:08:41.385 [JavaFX Application Thread] INFO  b.n.p.n.Connection: Connection doShutDown started 
jan.-19 13:08:41.386 [JavaFX Application Thread] INFO  b.n.p.n.Connection: Connection doShutDown started 
jan.-19 13:08:41.387 [JavaFX Application Thread] INFO  b.n.p.n.NetworkNode: Shutdown of node Optional[5kru4ypfkeea7hakusr5c6b33zqdailtjljydxpv6ydf37eit4ts5myd.onion:9999] completed 
jan.-19 13:08:41.387 [JavaFX Application Thread] INFO  b.n.p.n.Connection: Connection doShutDown started 
jan.-19 13:08:41.389 [JavaFX Application Thread] INFO  b.n.p.n.Connection: Connection doShutDown started 
jan.-19 13:08:41.390 [JavaFX Application Thread] INFO  b.n.p.n.NetworkNode: Shutdown of node Optional[67bzbxswu6enyd6pfmtasszpz65i5vnmmpy2oyflydlji3j7kzl7xgyd.onion:9999] completed 
jan.-19 13:08:41.392 [JavaFX Application Thread] INFO  b.n.p.n.NetworkNode: Shutdown of node Optional[4pzddr4vs62nabtmb6vly6k7d576ebhfpu346fti5l5wylwaesmxgrqd.onion:9999] completed 
jan.-19 13:08:41.395 [JavaFX Application Thread] INFO  b.n.p.n.NetworkNode: Shutdown of node Optional[u64gt7eyey7kw4xotpzjvcedlgda23yg53iq66ajltj73gq2wioh3yqd.onion:9999] completed 
jan.-19 13:08:41.397 [JavaFX Application Thread] INFO  b.n.p.n.NetworkNode: Shutdown of node Optional[iczzbnlp32vrtklb6eur7pmvng2f2zyamb4p4mcdesfwonr77jwekkyd.onion:9999] completed 
jan.-19 13:08:41.399 [JavaFX Application Thread] INFO  b.n.p.n.NetworkNode: Shutdown of node Optional[uf7iumk5vslqpr7uzdri3uufr23t55n7bw7e2ubmke5p5fvwi5f6o7yd.onion:9999] completed 
jan.-19 13:08:41.400 [JavaFX Application Thread] INFO  b.n.p.n.NetworkNode: Shutdown of node Optional[d55zx5pwq3yr5wqsuvohunuahlpenvv5qmbys4bryxsfjewsptpgruid.onion:9999] completed 
jan.-19 13:08:41.401 [JavaFX Application Thread] INFO  b.n.p.n.NetworkNode: Shutdown of node Optional[6fh3ugknzioakjka6mo2bmtkax7qhjm5pxnjoi53uybqgbq5qnbco3ad.onion:9999] completed 
jan.-19 13:08:41.402 [JavaFX Application Thread] INFO  b.n.p.n.NetworkNode: Shutdown completed with all connections closed 
jan.-19 13:08:41.402 [JavaFX Application Thread] DEBUG o.b.n.tor.Tor: Stopping Tor 
jan.-19 13:08:41.410 [JavaFX Application Thread] INFO  b.n.p.n.TorNetworkNode: Tor shutdown completed 
jan.-19 13:08:41.410 [TorControlParser] DEBUG o.b.n.tor.Tor: OR connection: status: CLOSED, orName: $E6275E8AC072658E196B89E3891A597B4971683B~BM15 
jan.-19 13:08:41.410 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 52 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$6B13A4EC169E4FB0F3141E1AE4307966569FA47C~experimentalrelay,$B127DE4BDC3CCE8564C84AD6B7A4B6449B90A4A4~Doedelkiste51 
jan.-19 13:08:41.410 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 62 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$DC40A59D4D744F2C3C7A655EC6BF3A59AFA1C66C~ThisIsForEdSnowden,$84D164A906CD165C77F6A49C97E2F4CA17C3AB3F~Unnamed 
jan.-19 13:08:41.410 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 95 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$63540827C4832D214984EA47B7A68C593F9F862F~Unnamed,$938588DFA0CA1702C4BFEF88886918C944D494A6~Perun1in1,$28FDCC237E83C4EF83376336DB960D11D49FA756~Unnamed 
jan.-19 13:08:41.411 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 94 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$8701E70AC4C0C9E1FE47EA853FC997D29BE5D65C~brokolimc2,$74BD32109D7B0F2C3C7488EBFBFDDF1A90F9CED6~mevPLXicebeer02 
jan.-19 13:08:41.411 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 58 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$00283B5564E3072DCDDAB31D6EF622DD49BF524F~StarAppsMobley,$2889D778367BFBE2D594E95524E3FB908B49AA02~nognu 
jan.-19 13:08:41.411 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 38 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$3239007CE1FB2ECDFDF2067DF23B949295DC5EF6~TOR2DFN01a,$C884C499BDFAF7E7D5E666726BC3B1F23D2F1F4D~jstark1809nl002 
jan.-19 13:08:41.411 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 98 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$1CDCB48F64E21D5ACAFE2471912E2E76F600EDFA~drkhsh,$E612306325AE03F0C82C290ACAFB8C724A8B5B91~theark2 
jan.-19 13:08:41.411 [JavaFX Application Thread] INFO  b.c.a.BisqExecutable: P2PService shutdown completed 
jan.-19 13:08:41.411 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 88 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$F171657CF5F726073D3ADD544F538F6BA1B2310C~PogboxRelay,$BF50E09EED25B82861CF95E1AAA42DCFEF53E5D1~LupusreginaBeta 
jan.-19 13:08:41.411 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 101 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$6AD59F2DA87F44532D0B472407481AB4F9A9DC4B~lmtor1,$79E3B585803DE805CCBC00C1EF36B1E74372861D~udeserveprivacy 
jan.-19 13:08:41.411 [TorControlParser] DEBUG o.b.n.tor.Tor: CircuitStatus: 34 CLOSED $E6275E8AC072658E196B89E3891A597B4971683B~BM15,$F6E24FDB0D208D40292ED9274FEB7FAFA529AC25~dhitechnical,$BAE10387321FDD3279EA44320720B919777FE640~cubieserver 
jan.-19 13:08:41.412 [JavaFX Application Thread] INFO  b.c.a.BisqExecutable: PersistenceManager flushAllDataToDiskAtShutdown started 
jan.-19 13:08:41.413 [JavaFX Application Thread] WARN  b.c.p.PersistenceManager: Application has not completed start up yet so we do not flush data to disk. 
jan.-19 13:08:41.413 [JavaFX Application Thread] INFO  b.c.a.BisqExecutable: Graceful shutdown completed. Exiting now. 

@ghost
Copy link

ghost commented Jan 19, 2022

(Standard advice: backup before deleting anything)

Your log suggests Tor connectivity issues. Try clearing out Tor cachefiles. (Close Bisq first). All files can be deleted from /home/<username>/.local/share/Bisq/btc_mainnet/tor, they will be created as necessary at startup. Leave the subdirectories unchanged (they contain your onion addr / keys) unless you want a fresh Tor identity, in which case remove the Tor directory completely.

@kiocosta
Copy link
Contributor

(Standard advice: backup before deleting anything)

Your log suggests Tor connectivity issues. Try clearing out Tor cachefiles. (Close Bisq first). All files can be deleted from /home/<username>/.local/share/Bisq/btc_mainnet/tor, they will be created as necessary at startup. Leave the subdirectories unchanged (they contain your onion addr / keys) unless you want a fresh Tor identity, in which case remove the Tor directory completely.

It worked! Thanks! :)

Critical Bugs Board automation moved this from To do to Done Jan 24, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a:bug in:network is:critical https://bisq.wiki/Critical_bug is:priority PR or issue marked with this label is up for compensation re:Tor
Projects
Development

Successfully merging a pull request may close this issue.

7 participants