BCH with last 2 days of transactions only

Arsenie Yeremin
DistributedAPI
Published in
59 min readNov 3, 2019

Why do this?

To keep the chain lightweight.

  1. Download Latest version of https://github.com/gcash/bchd/releases
  2. Extract zip file
  3. copy sample-bchd.conf to /Users/[yourprofilename]/Library/Application Support/Bchd/bchd.conf
  4. Uncomment and set parameters for to limit size of blockchain
; ------------------------------------------------------------------; Database Settings - The following options control the database that holds; the block chain.; ------------------------------------------------------------------; Database backend to use for the Block Chain.; Valid drivers: ffldb; dbtype=ffldb; Delete historical blocks from the chain. A buffer of blocks will be; retained in case of a reorg.prune=1; The number of blocks to retain when running in pruned mode.; Cannot be less than 288.prunedepth=300; Rebuild the UTXO database from currently indexed blocks on disk.; reindexchainstate=0; The maximum size in MiB of the database cache.; dbcachesize=500; The number of seconds between database flushes.; dbflushinterval=1800; ------------------------------------------------------------------; Synchronization Settings - The following options control how the node will; synchronize its copy of the block chain.; ------------------------------------------------------------------; Sync full blocks from the last checkpoint to the tip rather than from genesis.fastsync=1

5. Enable REST api by uncommenting rpcuser, rpcpass and rpclisten

; ------------------------------------------------------------------------------; RPC server options - The following options control the built-in RPC server; which is used to control and query information from a running bchd process.;; NOTE: The RPC server is disabled by default if rpcuser AND rpcpass, or; rpclimituser AND rpclimitpass, are not specified.; ------------------------------------------------------------------------------; Secure the RPC API by specifying the username and password.  You can also; specify a limited username and password.  You must specify at least one; full set of credentials - limited or admin - or the RPC server will; be disabled.; rpcuser=whatever_admin_username_you_want; rpcpass=; rpclimituser=whatever_limited_username_you_want; rpclimitpass=; Specify the interfaces for the RPC server listen on.  One listen address per; line.  NOTE: The default port is modified by some options such as 'testnet',; so it is recommended to not specify a port and allow a proper default to be; chosen unless you have a specific reason to do otherwise.  By default, the; RPC server will only listen on localhost for IPv4 and IPv6.; All interfaces on default port:;   rpclisten=; All ipv4 interfaces on default port:;   rpclisten=0.0.0.0

6. Run ./bchd in directory you extracted it in.

arsen@imac5k2015 bchd-darwin_amd64 % ./bchd2019-11-03 14:20:10.102 [INF] BCHD: Version 0.15.02019-11-03 14:20:10.103 [INF] BCHD: Loading block database from '/Users/arsen/Library/Application Support/Bchd/data/mainnet/blocks_ffldb'2019-11-03 14:20:10.171 [INF] BCHD: Block database loaded2019-11-03 14:20:10.180 [INF] CHAN: Loading block index...2019-11-03 14:20:15.870 [INF] CHAN: Chain state (height 430000, hash 000000000000000001868b2bb3a285f3cc6b33ea234eb70facf4dcdf22186b87, totaltx 0, work 46866476015931394229033086)2019-11-03 14:20:15.870 [INF] CHAN: FastSync: Downloading UTXO set from http://localhost:8080/ipfs/QmXkBQJrMKkCKNbwv4m5xtnqwU9Sq7kucPigvZW8mWxcrv to /Users/arsen/Library/Application Support/Bchd/data/mainnet ...2019-11-03 14:20:15.871 [ERR] CHAN: FastSync: Failed downloading UTXO set: Head http://localhost:8080/ipfs/QmXkBQJrMKkCKNbwv4m5xtnqwU9Sq7kucPigvZW8mWxcrv: dial tcp [::1]:8080: connect: connection refused2019-11-03 14:20:15.871 [INF] CHAN: FastSync: Downloading UTXO set from https://ipfs.greyh.at/ipfs/QmXkBQJrMKkCKNbwv4m5xtnqwU9Sq7kucPigvZW8mWxcrv to /Users/arsen/Library/Application Support/Bchd/data/mainnet ...2019-11-03 14:20:15.879 [WRN] RPCS: Can't listen on [::]:8334: listen tcp6 [::]:8334: bind: address already in use2019-11-03 14:20:15.879 [INF] RPCS: RPC server listening on 0.0.0.0:83342019-11-03 14:20:15.879 [INF] RPCS: RPC server listening on [::]:83342019-11-03 14:20:15.926 [INF] AMGR: Loaded 471 addresses from file '/Users/arsen/Library/Application Support/Bchd/data/mainnet/peers.json'2019-11-03 14:20:15.927 [INF] CMGR: Server listening on 0.0.0.0:83332019-11-03 14:20:15.927 [INF] CMGR: Server listening on [::]:83332019-11-03 14:20:15.950 [INF] CMGR: 36 addresses found from DNS seed btccash-seeder.bitcoinunlimited.info2019-11-03 14:20:15.954 [INF] CMGR: 2 addresses found from DNS seed seed.deadalnix.me2019-11-03 14:20:15.956 [INF] CMGR: 24 addresses found from DNS seed seed.bitcoinabc.org2019-11-03 14:20:16.037 [INF] CMGR: 25 addresses found from DNS seed seed.bchd.cash2019-11-03 14:20:16.139 [INF] CMGR: 60 addresses found from DNS seed seed.bitprim.org2019-11-03 14:20:16.178 [INF] SYNC: New valid peer 172.104.82.95:8333 (outbound) (/Bitcoin ABC:0.19.6(EB32.0; bitcore)/)2019-11-03 14:20:16.179 [INF] SYNC: Syncing to block height 607469 from peer 172.104.82.95:83332019-11-03 14:20:16.179 [INF] SYNC: Downloading headers for blocks 430001 to 470000 from peer 172.104.82.95:83332019-11-03 14:20:16.279 [WRN] SYNC: Received done peer message for unknown peer 104.248.134.215:8333 (outbound)2019-11-03 14:20:16.295 [INF] SYNC: New valid peer 46.4.98.182:8333 (outbound) (/Bitcoin ABC:0.20.4(EB32.0)/)2019-11-03 14:20:16.299 [INF] SYNC: New valid peer 173.212.242.147:8333 (outbound) (/Bitcoin ABC:0.19.6(EB32.0)/)2019-11-03 14:20:16.308 [INF] SYNC: New valid peer 176.9.145.168:8333 (outbound) (/Bitcoin ABC:0.20.4(EB32.0)/)2019-11-03 14:20:16.328 [INF] SYNC: New valid peer 35.199.112.215:8333 (outbound) (/Bitcoin ABC:0.15.1(EB8.0)/)2019-11-03 14:20:16.372 [INF] SYNC: New valid peer 185.138.8.46:8333 (outbound) (/Bitcoin ABC:0.19.6(EB32.0)/)2019-11-03 14:20:16.653 [INF] SYNC: New valid peer 190.2.140.16:8333 (outbound) (/Bitcoin ABC:0.19.9(EB32.0)/)2019-11-03 14:20:20.225 [INF] CMGR: 12 addresses found from DNS seed seed-abc.bitcoinforks.org2019-11-03 14:20:21.452 [INF] SYNC: Verified downloaded block header against checkpoint at height 470000/hash 0000000000000000006c539c722e280a0769abd510af0073430159d71e6d75892019-11-03 14:20:22.615 [INF] CHAN: FastSync: Downloaded 556MB of 3,179MB (17%)2019-11-03 14:20:26.121 [INF] SYNC: New valid peer 78.46.95.150:8333 (outbound) (/Bitcoin ABC:0.20.4(EB32.0)/)2019-11-03 14:20:27.615 [INF] CHAN: FastSync: Downloaded 597MB of 3,179MB (18%)2019-11-03 14:20:32.615 [INF] CHAN: FastSync: Downloaded 638MB of 3,179MB (20%)2019-11-03 14:20:33.116 [INF] SYNC: Verified downloaded block header against checkpoint at height 510000/hash 00000000000000000367922b6457e21d591ef86b360d78a598b14c2f1f6b0e042019-11-03 14:20:37.664 [INF] CHAN: FastSync: Downloaded 674MB of 3,179MB (21%)2019-11-03 14:20:42.616 [INF] CHAN: FastSync: Downloaded 716MB of 3,179MB (22%)2019-11-03 14:20:45.582 [INF] SYNC: Verified downloaded block header against checkpoint at height 552979/hash 0000000000000000015648768ac1b788a83187d706f858919fcc5c096b76fbf22019-11-03 14:20:47.612 [INF] CHAN: FastSync: Downloaded 757MB of 3,179MB (23%)2019-11-03 14:20:51.512 [INF] SYNC: Verified downloaded block header against checkpoint at height 556767/hash 0000000000000000004626ff6e3b936941d341c5932ece4357eeccac44e6d56c2019-11-03 14:20:52.615 [INF] CHAN: FastSync: Downloaded 798MB of 3,179MB (25%)2019-11-03 14:20:55.943 [INF] SYNC: Verified downloaded block header against checkpoint at height 582680/hash 000000000000000001b4b8e36aec7d4f9671a47872cb9a74dc16ca398c7dcc182019-11-03 14:20:57.615 [INF] CHAN: FastSync: Downloaded 837MB of 3,179MB (26%)2019-11-03 14:20:58.827 [INF] SYNC: Header download complete waiting for UTXO verification to finish...2019-11-03 14:21:02.615 [INF] CHAN: FastSync: Downloaded 879MB of 3,179MB (27%)2019-11-03 14:21:07.615 [INF] CHAN: FastSync: Downloaded 923MB of 3,179MB (29%)2019-11-03 14:21:12.615 [INF] CHAN: FastSync: Downloaded 967MB of 3,179MB (30%)2019-11-03 14:21:17.616 [INF] CHAN: FastSync: Downloaded 1,010MB of 3,179MB (31%)2019-11-03 14:21:22.616 [INF] CHAN: FastSync: Downloaded 1,052MB of 3,179MB (33%)2019-11-03 14:21:27.615 [INF] CHAN: FastSync: Downloaded 1,096MB of 3,179MB (34%)2019-11-03 14:21:32.616 [INF] CHAN: FastSync: Downloaded 1,140MB of 3,179MB (35%)2019-11-03 14:21:37.616 [INF] CHAN: FastSync: Downloaded 1,184MB of 3,179MB (37%)2019-11-03 14:21:42.615 [INF] CHAN: FastSync: Downloaded 1,228MB of 3,179MB (38%)2019-11-03 14:21:47.615 [INF] CHAN: FastSync: Downloaded 1,271MB of 3,179MB (39%)2019-11-03 14:21:52.616 [INF] CHAN: FastSync: Downloaded 1,315MB of 3,179MB (41%)2019-11-03 14:21:57.615 [INF] CHAN: FastSync: Downloaded 1,359MB of 3,179MB (42%)2019-11-03 14:22:02.616 [INF] CHAN: FastSync: Downloaded 1,403MB of 3,179MB (44%)2019-11-03 14:22:07.615 [INF] CHAN: FastSync: Downloaded 1,447MB of 3,179MB (45%)2019-11-03 14:22:12.615 [INF] CHAN: FastSync: Downloaded 1,490MB of 3,179MB (46%)2019-11-03 14:22:17.616 [INF] CHAN: FastSync: Downloaded 1,534MB of 3,179MB (48%)2019-11-03 14:22:22.615 [INF] CHAN: FastSync: Downloaded 1,578MB of 3,179MB (49%)2019-11-03 14:22:27.615 [INF] CHAN: FastSync: Downloaded 1,621MB of 3,179MB (50%)2019-11-03 14:22:32.615 [INF] CHAN: FastSync: Downloaded 1,662MB of 3,179MB (52%)2019-11-03 14:22:37.615 [INF] CHAN: FastSync: Downloaded 1,706MB of 3,179MB (53%)2019-11-03 14:22:42.615 [INF] CHAN: FastSync: Downloaded 1,750MB of 3,179MB (55%)2019-11-03 14:22:47.616 [INF] CHAN: FastSync: Downloaded 1,794MB of 3,179MB (56%)2019-11-03 14:22:52.615 [INF] CHAN: FastSync: Downloaded 1,838MB of 3,179MB (57%)2019-11-03 14:22:57.616 [INF] CHAN: FastSync: Downloaded 1,882MB of 3,179MB (59%)2019-11-03 14:23:02.615 [INF] CHAN: FastSync: Downloaded 1,924MB of 3,179MB (60%)2019-11-03 14:23:07.615 [INF] CHAN: FastSync: Downloaded 1,968MB of 3,179MB (61%)2019-11-03 14:23:12.615 [INF] CHAN: FastSync: Downloaded 2,012MB of 3,179MB (63%)2019-11-03 14:23:17.615 [INF] CHAN: FastSync: Downloaded 2,056MB of 3,179MB (64%)2019-11-03 14:23:22.615 [INF] CHAN: FastSync: Downloaded 2,100MB of 3,179MB (66%)2019-11-03 14:23:27.615 [INF] CHAN: FastSync: Downloaded 2,141MB of 3,179MB (67%)2019-11-03 14:23:32.615 [INF] CHAN: FastSync: Downloaded 2,180MB of 3,179MB (68%)2019-11-03 14:23:37.615 [INF] CHAN: FastSync: Downloaded 2,224MB of 3,179MB (69%)2019-11-03 14:23:42.615 [INF] CHAN: FastSync: Downloaded 2,268MB of 3,179MB (71%)2019-11-03 14:23:47.612 [INF] CHAN: FastSync: Downloaded 2,312MB of 3,179MB (72%)2019-11-03 14:23:52.616 [INF] CHAN: FastSync: Downloaded 2,356MB of 3,179MB (74%)2019-11-03 14:23:57.615 [INF] CHAN: FastSync: Downloaded 2,400MB of 3,179MB (75%)2019-11-03 14:24:02.615 [INF] CHAN: FastSync: Downloaded 2,443MB of 3,179MB (76%)2019-11-03 14:24:07.616 [INF] CHAN: FastSync: Downloaded 2,487MB of 3,179MB (78%)2019-11-03 14:24:12.615 [INF] CHAN: FastSync: Downloaded 2,531MB of 3,179MB (79%)2019-11-03 14:24:17.615 [INF] CHAN: FastSync: Downloaded 2,575MB of 3,179MB (80%)2019-11-03 14:24:18.235 [ERR] CHAN: FastSync: Failed downloading UTXO set: stream error: stream ID 3; INTERNAL_ERROR2019-11-03 14:24:23.867 [INF] CHAN: FastSync: Downloaded 2,615MB of 3,179MB (82%)2019-11-03 14:24:28.866 [INF] CHAN: FastSync: Downloaded 2,659MB of 3,179MB (83%)2019-11-03 14:24:33.868 [INF] CHAN: FastSync: Downloaded 2,703MB of 3,179MB (85%)2019-11-03 14:24:38.868 [INF] CHAN: FastSync: Downloaded 2,745MB of 3,179MB (86%)2019-11-03 14:24:43.868 [INF] CHAN: FastSync: Downloaded 2,789MB of 3,179MB (87%)2019-11-03 14:24:48.868 [INF] CHAN: FastSync: Downloaded 2,833MB of 3,179MB (89%)2019-11-03 14:24:53.867 [INF] CHAN: FastSync: Downloaded 2,877MB of 3,179MB (90%)2019-11-03 14:24:58.868 [INF] CHAN: FastSync: Downloaded 2,921MB of 3,179MB (91%)2019-11-03 14:25:03.868 [INF] CHAN: FastSync: Downloaded 2,964MB of 3,179MB (93%)2019-11-03 14:25:08.865 [INF] CHAN: FastSync: Downloaded 3,008MB of 3,179MB (94%)2019-11-03 14:25:13.868 [INF] CHAN: FastSync: Downloaded 3,052MB of 3,179MB (96%)2019-11-03 14:25:18.867 [INF] CHAN: FastSync: Downloaded 3,096MB of 3,179MB (97%)2019-11-03 14:25:23.868 [INF] CHAN: FastSync: Downloaded 3,140MB of 3,179MB (98%)2019-11-03 14:25:28.326 [INF] CHAN: FastSync: Download saved to /Users/arsen/Library/Application Support/Bchd/data/mainnet/QmXkBQJrMKkCKNbwv4m5xtnqwU9Sq7kucPigvZW8mWxcrv2019-11-03 14:25:28.326 [INF] CHAN: FastSync: UTXO download complete. Verifying integrity...2019-11-03 14:29:23.120 [INF] CHAN: Flushing UTXO cache of ~451 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 14:30:28.330 [INF] CHAN: UTXO verification progress: processed 319/3032 MiB (10.52%)

7.Test API using Postman

{"jsonrpc":"1.0","id":"curltext","method":"getinfo","params":[]}

Log looks something like this:

arsen@imac5k2015 bchd-darwin_amd64 % ./bchd2019-11-03 14:20:10.102 [INF] BCHD: Version 0.15.02019-11-03 14:20:10.103 [INF] BCHD: Loading block database from '/Users/arsen/Library/Application Support/Bchd/data/mainnet/blocks_ffldb'2019-11-03 14:20:10.171 [INF] BCHD: Block database loaded2019-11-03 14:20:10.180 [INF] CHAN: Loading block index...2019-11-03 14:20:15.870 [INF] CHAN: Chain state (height 430000, hash 000000000000000001868b2bb3a285f3cc6b33ea234eb70facf4dcdf22186b87, totaltx 0, work 46866476015931394229033086)2019-11-03 14:20:15.870 [INF] CHAN: FastSync: Downloading UTXO set from http://localhost:8080/ipfs/QmXkBQJrMKkCKNbwv4m5xtnqwU9Sq7kucPigvZW8mWxcrv to /Users/arsen/Library/Application Support/Bchd/data/mainnet ...2019-11-03 14:20:15.871 [ERR] CHAN: FastSync: Failed downloading UTXO set: Head http://localhost:8080/ipfs/QmXkBQJrMKkCKNbwv4m5xtnqwU9Sq7kucPigvZW8mWxcrv: dial tcp [::1]:8080: connect: connection refused2019-11-03 14:20:15.871 [INF] CHAN: FastSync: Downloading UTXO set from https://ipfs.greyh.at/ipfs/QmXkBQJrMKkCKNbwv4m5xtnqwU9Sq7kucPigvZW8mWxcrv to /Users/arsen/Library/Application Support/Bchd/data/mainnet ...2019-11-03 14:20:15.879 [WRN] RPCS: Can't listen on [::]:8334: listen tcp6 [::]:8334: bind: address already in use2019-11-03 14:20:15.879 [INF] RPCS: RPC server listening on 0.0.0.0:83342019-11-03 14:20:15.879 [INF] RPCS: RPC server listening on [::]:83342019-11-03 14:20:15.926 [INF] AMGR: Loaded 471 addresses from file '/Users/arsen/Library/Application Support/Bchd/data/mainnet/peers.json'2019-11-03 14:20:15.927 [INF] CMGR: Server listening on 0.0.0.0:83332019-11-03 14:20:15.927 [INF] CMGR: Server listening on [::]:83332019-11-03 14:20:15.950 [INF] CMGR: 36 addresses found from DNS seed btccash-seeder.bitcoinunlimited.info2019-11-03 14:20:15.954 [INF] CMGR: 2 addresses found from DNS seed seed.deadalnix.me2019-11-03 14:20:15.956 [INF] CMGR: 24 addresses found from DNS seed seed.bitcoinabc.org2019-11-03 14:20:16.037 [INF] CMGR: 25 addresses found from DNS seed seed.bchd.cash2019-11-03 14:20:16.139 [INF] CMGR: 60 addresses found from DNS seed seed.bitprim.org2019-11-03 14:20:16.178 [INF] SYNC: New valid peer 172.104.82.95:8333 (outbound) (/Bitcoin ABC:0.19.6(EB32.0; bitcore)/)2019-11-03 14:20:16.179 [INF] SYNC: Syncing to block height 607469 from peer 172.104.82.95:83332019-11-03 14:20:16.179 [INF] SYNC: Downloading headers for blocks 430001 to 470000 from peer 172.104.82.95:83332019-11-03 14:20:16.279 [WRN] SYNC: Received done peer message for unknown peer 104.248.134.215:8333 (outbound)2019-11-03 14:20:16.295 [INF] SYNC: New valid peer 46.4.98.182:8333 (outbound) (/Bitcoin ABC:0.20.4(EB32.0)/)2019-11-03 14:20:16.299 [INF] SYNC: New valid peer 173.212.242.147:8333 (outbound) (/Bitcoin ABC:0.19.6(EB32.0)/)2019-11-03 14:20:16.308 [INF] SYNC: New valid peer 176.9.145.168:8333 (outbound) (/Bitcoin ABC:0.20.4(EB32.0)/)2019-11-03 14:20:16.328 [INF] SYNC: New valid peer 35.199.112.215:8333 (outbound) (/Bitcoin ABC:0.15.1(EB8.0)/)2019-11-03 14:20:16.372 [INF] SYNC: New valid peer 185.138.8.46:8333 (outbound) (/Bitcoin ABC:0.19.6(EB32.0)/)2019-11-03 14:20:16.653 [INF] SYNC: New valid peer 190.2.140.16:8333 (outbound) (/Bitcoin ABC:0.19.9(EB32.0)/)2019-11-03 14:20:20.225 [INF] CMGR: 12 addresses found from DNS seed seed-abc.bitcoinforks.org2019-11-03 14:20:21.452 [INF] SYNC: Verified downloaded block header against checkpoint at height 470000/hash 0000000000000000006c539c722e280a0769abd510af0073430159d71e6d75892019-11-03 14:20:22.615 [INF] CHAN: FastSync: Downloaded 556MB of 3,179MB (17%)2019-11-03 14:20:26.121 [INF] SYNC: New valid peer 78.46.95.150:8333 (outbound) (/Bitcoin ABC:0.20.4(EB32.0)/)2019-11-03 14:20:27.615 [INF] CHAN: FastSync: Downloaded 597MB of 3,179MB (18%)2019-11-03 14:20:32.615 [INF] CHAN: FastSync: Downloaded 638MB of 3,179MB (20%)2019-11-03 14:20:33.116 [INF] SYNC: Verified downloaded block header against checkpoint at height 510000/hash 00000000000000000367922b6457e21d591ef86b360d78a598b14c2f1f6b0e042019-11-03 14:20:37.664 [INF] CHAN: FastSync: Downloaded 674MB of 3,179MB (21%)2019-11-03 14:20:42.616 [INF] CHAN: FastSync: Downloaded 716MB of 3,179MB (22%)2019-11-03 14:20:45.582 [INF] SYNC: Verified downloaded block header against checkpoint at height 552979/hash 0000000000000000015648768ac1b788a83187d706f858919fcc5c096b76fbf22019-11-03 14:20:47.612 [INF] CHAN: FastSync: Downloaded 757MB of 3,179MB (23%)2019-11-03 14:20:51.512 [INF] SYNC: Verified downloaded block header against checkpoint at height 556767/hash 0000000000000000004626ff6e3b936941d341c5932ece4357eeccac44e6d56c2019-11-03 14:20:52.615 [INF] CHAN: FastSync: Downloaded 798MB of 3,179MB (25%)2019-11-03 14:20:55.943 [INF] SYNC: Verified downloaded block header against checkpoint at height 582680/hash 000000000000000001b4b8e36aec7d4f9671a47872cb9a74dc16ca398c7dcc182019-11-03 14:20:57.615 [INF] CHAN: FastSync: Downloaded 837MB of 3,179MB (26%)2019-11-03 14:20:58.827 [INF] SYNC: Header download complete waiting for UTXO verification to finish...2019-11-03 14:21:02.615 [INF] CHAN: FastSync: Downloaded 879MB of 3,179MB (27%)2019-11-03 14:21:07.615 [INF] CHAN: FastSync: Downloaded 923MB of 3,179MB (29%)2019-11-03 14:21:12.615 [INF] CHAN: FastSync: Downloaded 967MB of 3,179MB (30%)2019-11-03 14:21:17.616 [INF] CHAN: FastSync: Downloaded 1,010MB of 3,179MB (31%)2019-11-03 14:21:22.616 [INF] CHAN: FastSync: Downloaded 1,052MB of 3,179MB (33%)2019-11-03 14:21:27.615 [INF] CHAN: FastSync: Downloaded 1,096MB of 3,179MB (34%)2019-11-03 14:21:32.616 [INF] CHAN: FastSync: Downloaded 1,140MB of 3,179MB (35%)2019-11-03 14:21:37.616 [INF] CHAN: FastSync: Downloaded 1,184MB of 3,179MB (37%)2019-11-03 14:21:42.615 [INF] CHAN: FastSync: Downloaded 1,228MB of 3,179MB (38%)2019-11-03 14:21:47.615 [INF] CHAN: FastSync: Downloaded 1,271MB of 3,179MB (39%)2019-11-03 14:21:52.616 [INF] CHAN: FastSync: Downloaded 1,315MB of 3,179MB (41%)2019-11-03 14:21:57.615 [INF] CHAN: FastSync: Downloaded 1,359MB of 3,179MB (42%)2019-11-03 14:22:02.616 [INF] CHAN: FastSync: Downloaded 1,403MB of 3,179MB (44%)2019-11-03 14:22:07.615 [INF] CHAN: FastSync: Downloaded 1,447MB of 3,179MB (45%)2019-11-03 14:22:12.615 [INF] CHAN: FastSync: Downloaded 1,490MB of 3,179MB (46%)2019-11-03 14:22:17.616 [INF] CHAN: FastSync: Downloaded 1,534MB of 3,179MB (48%)2019-11-03 14:22:22.615 [INF] CHAN: FastSync: Downloaded 1,578MB of 3,179MB (49%)2019-11-03 14:22:27.615 [INF] CHAN: FastSync: Downloaded 1,621MB of 3,179MB (50%)2019-11-03 14:22:32.615 [INF] CHAN: FastSync: Downloaded 1,662MB of 3,179MB (52%)2019-11-03 14:22:37.615 [INF] CHAN: FastSync: Downloaded 1,706MB of 3,179MB (53%)2019-11-03 14:22:42.615 [INF] CHAN: FastSync: Downloaded 1,750MB of 3,179MB (55%)2019-11-03 14:22:47.616 [INF] CHAN: FastSync: Downloaded 1,794MB of 3,179MB (56%)2019-11-03 14:22:52.615 [INF] CHAN: FastSync: Downloaded 1,838MB of 3,179MB (57%)2019-11-03 14:22:57.616 [INF] CHAN: FastSync: Downloaded 1,882MB of 3,179MB (59%)2019-11-03 14:23:02.615 [INF] CHAN: FastSync: Downloaded 1,924MB of 3,179MB (60%)2019-11-03 14:23:07.615 [INF] CHAN: FastSync: Downloaded 1,968MB of 3,179MB (61%)2019-11-03 14:23:12.615 [INF] CHAN: FastSync: Downloaded 2,012MB of 3,179MB (63%)2019-11-03 14:23:17.615 [INF] CHAN: FastSync: Downloaded 2,056MB of 3,179MB (64%)2019-11-03 14:23:22.615 [INF] CHAN: FastSync: Downloaded 2,100MB of 3,179MB (66%)2019-11-03 14:23:27.615 [INF] CHAN: FastSync: Downloaded 2,141MB of 3,179MB (67%)2019-11-03 14:23:32.615 [INF] CHAN: FastSync: Downloaded 2,180MB of 3,179MB (68%)2019-11-03 14:23:37.615 [INF] CHAN: FastSync: Downloaded 2,224MB of 3,179MB (69%)2019-11-03 14:23:42.615 [INF] CHAN: FastSync: Downloaded 2,268MB of 3,179MB (71%)2019-11-03 14:23:47.612 [INF] CHAN: FastSync: Downloaded 2,312MB of 3,179MB (72%)2019-11-03 14:23:52.616 [INF] CHAN: FastSync: Downloaded 2,356MB of 3,179MB (74%)2019-11-03 14:23:57.615 [INF] CHAN: FastSync: Downloaded 2,400MB of 3,179MB (75%)2019-11-03 14:24:02.615 [INF] CHAN: FastSync: Downloaded 2,443MB of 3,179MB (76%)2019-11-03 14:24:07.616 [INF] CHAN: FastSync: Downloaded 2,487MB of 3,179MB (78%)2019-11-03 14:24:12.615 [INF] CHAN: FastSync: Downloaded 2,531MB of 3,179MB (79%)2019-11-03 14:24:17.615 [INF] CHAN: FastSync: Downloaded 2,575MB of 3,179MB (80%)2019-11-03 14:24:18.235 [ERR] CHAN: FastSync: Failed downloading UTXO set: stream error: stream ID 3; INTERNAL_ERROR2019-11-03 14:24:23.867 [INF] CHAN: FastSync: Downloaded 2,615MB of 3,179MB (82%)2019-11-03 14:24:28.866 [INF] CHAN: FastSync: Downloaded 2,659MB of 3,179MB (83%)2019-11-03 14:24:33.868 [INF] CHAN: FastSync: Downloaded 2,703MB of 3,179MB (85%)2019-11-03 14:24:38.868 [INF] CHAN: FastSync: Downloaded 2,745MB of 3,179MB (86%)2019-11-03 14:24:43.868 [INF] CHAN: FastSync: Downloaded 2,789MB of 3,179MB (87%)2019-11-03 14:24:48.868 [INF] CHAN: FastSync: Downloaded 2,833MB of 3,179MB (89%)2019-11-03 14:24:53.867 [INF] CHAN: FastSync: Downloaded 2,877MB of 3,179MB (90%)2019-11-03 14:24:58.868 [INF] CHAN: FastSync: Downloaded 2,921MB of 3,179MB (91%)2019-11-03 14:25:03.868 [INF] CHAN: FastSync: Downloaded 2,964MB of 3,179MB (93%)2019-11-03 14:25:08.865 [INF] CHAN: FastSync: Downloaded 3,008MB of 3,179MB (94%)2019-11-03 14:25:13.868 [INF] CHAN: FastSync: Downloaded 3,052MB of 3,179MB (96%)2019-11-03 14:25:18.867 [INF] CHAN: FastSync: Downloaded 3,096MB of 3,179MB (97%)2019-11-03 14:25:23.868 [INF] CHAN: FastSync: Downloaded 3,140MB of 3,179MB (98%)2019-11-03 14:25:28.326 [INF] CHAN: FastSync: Download saved to /Users/arsen/Library/Application Support/Bchd/data/mainnet/QmXkBQJrMKkCKNbwv4m5xtnqwU9Sq7kucPigvZW8mWxcrv2019-11-03 14:25:28.326 [INF] CHAN: FastSync: UTXO download complete. Verifying integrity...2019-11-03 14:29:23.120 [INF] CHAN: Flushing UTXO cache of ~451 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 14:30:28.330 [INF] CHAN: UTXO verification progress: processed 319/3032 MiB (10.52%)2019-11-03 14:34:44.050 [INF] CHAN: Flushing UTXO cache of ~451 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 14:35:28.330 [INF] CHAN: UTXO verification progress: processed 638/3032 MiB (21.03%)2019-11-03 14:40:06.424 [INF] CHAN: Flushing UTXO cache of ~451 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 14:40:28.329 [INF] CHAN: UTXO verification progress: processed 957/3032 MiB (31.54%)2019-11-03 14:45:28.326 [INF] CHAN: UTXO verification progress: processed 1269/3032 MiB (41.85%)2019-11-03 14:45:35.884 [INF] CHAN: Flushing UTXO cache of ~451 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 14:50:28.330 [INF] CHAN: UTXO verification progress: processed 1491/3032 MiB (49.17%)2019-11-03 14:52:05.503 [INF] CHAN: Flushing UTXO cache of ~451 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 14:55:28.329 [INF] CHAN: UTXO verification progress: processed 1716/3032 MiB (56.60%)2019-11-03 14:58:45.698 [INF] CHAN: Flushing UTXO cache of ~451 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:00:28.326 [INF] CHAN: UTXO verification progress: processed 1912/3032 MiB (63.07%)2019-11-03 15:05:28.328 [INF] CHAN: UTXO verification progress: processed 2229/3032 MiB (73.52%)2019-11-03 15:05:29.784 [INF] CHAN: Flushing UTXO cache of ~451 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:10:28.326 [INF] CHAN: UTXO verification progress: processed 2458/3032 MiB (81.06%)2019-11-03 15:11:46.026 [INF] CHAN: Flushing UTXO cache of ~451 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:15:28.330 [INF] CHAN: UTXO verification progress: processed 2693/3032 MiB (88.81%)2019-11-03 15:17:59.918 [INF] CHAN: Flushing UTXO cache of ~451 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:20:28.330 [INF] CHAN: UTXO verification progress: processed 2932/3032 MiB (96.68%)2019-11-03 15:21:43.713 [INF] CHAN: Flushing UTXO cache of ~232 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:22:23.755 [INF] CHAN: Verification complete. UTXO hash 2406189cf8e15140c2004d4e9aa012711f48183689a305223c9bafdd3af8887e.2019-11-03 15:23:15.934 [INF] SYNC: Updating sync peer, last block: 2019-11-03 15:21:45.929747 -0800 PST m=+3695.848680543, violations: 32019-11-03 15:23:15.934 [INF] SYNC: Syncing to block height 607469 from peer 190.2.140.16:83332019-11-03 15:23:15.934 [INF] SYNC: Lost peer 172.104.82.95:8333 (outbound)2019-11-03 15:23:19.116 [INF] SYNC: Processed 1 block in 1h3m3.24s (25 transactions, height 582681/607469 (95.92%), 2019-05-15 05:23:27 -0700 PDT, ~0 MiB cache)2019-11-03 15:23:20.752 [INF] SYNC: New valid peer 13.251.236.55:8333 (outbound) (/Bitcoin ABC:0.20.2(EB32.0)/)2019-11-03 15:23:29.253 [INF] SYNC: Processed 30 blocks in 10.13s (18895 transactions, height 582711/607469 (95.92%), 2019-05-15 11:33:32 -0700 PDT, ~3 MiB cache)2019-11-03 15:23:39.289 [INF] SYNC: Processed 33 blocks in 10.03s (20288 transactions, height 582744/607469 (95.93%), 2019-05-15 19:13:19 -0700 PDT, ~9 MiB cache)2019-11-03 15:23:49.425 [INF] SYNC: Processed 41 blocks in 10.13s (17246 transactions, height 582785/607469 (95.94%), 2019-05-16 01:49:55 -0700 PDT, ~15 MiB cache)2019-11-03 15:23:59.516 [INF] SYNC: Processed 49 blocks in 10.09s (19405 transactions, height 582834/607469 (95.94%), 2019-05-16 08:06:08 -0700 PDT, ~22 MiB cache)2019-11-03 15:24:09.542 [INF] SYNC: Processed 43 blocks in 10.02s (25966 transactions, height 582877/607469 (95.95%), 2019-05-16 17:02:41 -0700 PDT, ~28 MiB cache)2019-11-03 15:24:19.574 [INF] SYNC: Processed 41 blocks in 10.03s (22670 transactions, height 582918/607469 (95.96%), 2019-05-17 00:36:18 -0700 PDT, ~35 MiB cache)2019-11-03 15:24:29.727 [INF] SYNC: Processed 48 blocks in 10.15s (21525 transactions, height 582966/607469 (95.97%), 2019-05-17 07:46:31 -0700 PDT, ~42 MiB cache)2019-11-03 15:24:32.720 [INF] CHAN: Flushing UTXO cache of ~45 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:24:39.905 [INF] SYNC: Processed 35 blocks in 10.17s (9228 transactions, height 583001/607469 (95.97%), 2019-05-17 11:48:11 -0700 PDT, ~1 MiB cache)2019-11-03 15:24:50.067 [INF] SYNC: Processed 77 blocks in 10.16s (25087 transactions, height 583078/607469 (95.98%), 2019-05-18 02:28:27 -0700 PDT, ~5 MiB cache)2019-11-03 15:25:00.158 [INF] SYNC: Processed 93 blocks in 10.09s (30968 transactions, height 583171/607469 (96.00%), 2019-05-18 16:58:06 -0700 PDT, ~9 MiB cache)2019-11-03 15:25:02.128 [INF] CHAN: Adding orphan block 0000000000000000018defdc06c993bf27c5c1ae3ef275461f7e07e77e0c791d with parent 0000000000000000011e3619d9ef63666712d0e08b654cb232badcc89388cc722019-11-03 15:25:10.266 [INF] SYNC: Processed 27 blocks in 10.1s (14170 transactions, height 583198/607469 (96.00%), 2019-05-18 21:49:27 -0700 PDT, ~11 MiB cache)2019-11-03 15:25:20.584 [INF] SYNC: Processed 64 blocks in 10.31s (43440 transactions, height 583262/607469 (96.02%), 2019-05-19 08:27:40 -0700 PDT, ~14 MiB cache)2019-11-03 15:25:23.255 [INF] CHAN: Flushing UTXO cache of ~16 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:25:30.775 [INF] SYNC: Processed 59 blocks in 10.19s (32992 transactions, height 583321/607469 (96.02%), 2019-05-19 17:05:43 -0700 PDT, ~2 MiB cache)2019-11-03 15:25:41.864 [INF] SYNC: Processed 73 blocks in 11.08s (40596 transactions, height 583394/607469 (96.04%), 2019-05-20 06:55:59 -0700 PDT, ~7 MiB cache)2019-11-03 15:25:52.281 [INF] SYNC: Processed 93 blocks in 10.41s (35801 transactions, height 583487/607469 (96.05%), 2019-05-20 21:49:21 -0700 PDT, ~12 MiB cache)2019-11-03 15:26:02.336 [INF] SYNC: Processed 68 blocks in 10.05s (30030 transactions, height 583555/607469 (96.06%), 2019-05-21 09:51:37 -0700 PDT, ~16 MiB cache)2019-11-03 15:26:06.317 [INF] CHAN: Flushing UTXO cache of ~18 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:26:12.467 [INF] SYNC: Processed 52 blocks in 10.13s (19849 transactions, height 583607/607469 (96.07%), 2019-05-21 18:44:18 -0700 PDT, ~1 MiB cache)2019-11-03 15:26:23.373 [INF] SYNC: Processed 74 blocks in 10.9s (30183 transactions, height 583681/607469 (96.08%), 2019-05-22 05:48:08 -0700 PDT, ~6 MiB cache)2019-11-03 15:26:33.385 [INF] SYNC: Processed 74 blocks in 10.01s (33223 transactions, height 583755/607469 (96.10%), 2019-05-22 18:10:52 -0700 PDT, ~10 MiB cache)2019-11-03 15:26:43.781 [INF] SYNC: Processed 67 blocks in 10.39s (22218 transactions, height 583822/607469 (96.11%), 2019-05-23 05:27:58 -0700 PDT, ~13 MiB cache)2019-11-03 15:26:50.328 [INF] CHAN: Flushing UTXO cache of ~16 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:26:53.792 [INF] SYNC: Processed 79 blocks in 10.01s (25432 transactions, height 583901/607469 (96.12%), 2019-05-23 17:28:19 -0700 PDT, ~1 MiB cache)2019-11-03 15:27:03.942 [INF] SYNC: Processed 81 blocks in 10.15s (31279 transactions, height 583982/607469 (96.13%), 2019-05-24 08:58:25 -0700 PDT, ~5 MiB cache)2019-11-03 15:27:14.022 [INF] SYNC: Processed 113 blocks in 10.07s (32539 transactions, height 584095/607469 (96.15%), 2019-05-25 02:32:50 -0700 PDT, ~9 MiB cache)2019-11-03 15:27:22.982 [INF] CHAN: Flushing UTXO cache of ~13 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:27:25.004 [INF] SYNC: Processed 85 blocks in 10.98s (27120 transactions, height 584180/607469 (96.17%), 2019-05-25 17:34:53 -0700 PDT, ~0 MiB cache)2019-11-03 15:27:35.369 [INF] SYNC: Processed 87 blocks in 10.36s (25953 transactions, height 584267/607469 (96.18%), 2019-05-26 08:15:22 -0700 PDT, ~4 MiB cache)2019-11-03 15:27:45.393 [INF] SYNC: Processed 74 blocks in 10.02s (32904 transactions, height 584341/607469 (96.19%), 2019-05-26 20:54:23 -0700 PDT, ~8 MiB cache)2019-11-03 15:27:55.516 [INF] SYNC: Processed 82 blocks in 10.12s (29600 transactions, height 584423/607469 (96.21%), 2019-05-27 09:32:47 -0700 PDT, ~11 MiB cache)2019-11-03 15:28:04.640 [INF] CHAN: Flushing UTXO cache of ~16 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:28:06.900 [INF] SYNC: Processed 57 blocks in 11.38s (26928 transactions, height 584480/607469 (96.22%), 2019-05-27 21:11:43 -0700 PDT, ~0 MiB cache)2019-11-03 15:28:16.913 [INF] SYNC: Processed 80 blocks in 10.01s (24374 transactions, height 584560/607469 (96.23%), 2019-05-28 08:17:47 -0700 PDT, ~5 MiB cache)2019-11-03 15:28:27.014 [INF] SYNC: Processed 59 blocks in 10.1s (24490 transactions, height 584619/607469 (96.24%), 2019-05-28 19:39:34 -0700 PDT, ~8 MiB cache)2019-11-03 15:28:37.187 [INF] SYNC: Processed 80 blocks in 10.17s (22451 transactions, height 584699/607469 (96.25%), 2019-05-29 05:44:14 -0700 PDT, ~11 MiB cache)2019-11-03 15:28:47.392 [INF] SYNC: Processed 63 blocks in 10.2s (27735 transactions, height 584762/607469 (96.26%), 2019-05-29 17:39:25 -0700 PDT, ~18 MiB cache)2019-11-03 15:28:49.969 [INF] CHAN: Flushing UTXO cache of ~20 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:28:57.492 [INF] SYNC: Processed 52 blocks in 10.1s (17963 transactions, height 584814/607469 (96.27%), 2019-05-30 03:38:33 -0700 PDT, ~2 MiB cache)2019-11-03 15:29:07.508 [INF] SYNC: Processed 130 blocks in 10.01s (17728 transactions, height 584944/607469 (96.29%), 2019-05-31 00:13:34 -0700 PDT, ~6 MiB cache)2019-11-03 15:29:20.433 [INF] SYNC: Processed 17 blocks in 12.92s (3212 transactions, height 584961/607469 (96.29%), 2019-05-31 04:43:44 -0700 PDT, ~8 MiB cache)2019-11-03 15:29:30.662 [INF] SYNC: Processed 60 blocks in 10.22s (9338 transactions, height 585021/607469 (96.30%), 2019-05-31 13:54:57 -0700 PDT, ~11 MiB cache)2019-11-03 15:29:35.069 [INF] CHAN: Flushing UTXO cache of ~14 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:29:40.722 [INF] SYNC: Processed 75 blocks in 10.05s (20281 transactions, height 585096/607469 (96.32%), 2019-05-31 23:55:16 -0700 PDT, ~1 MiB cache)2019-11-03 15:29:51.000 [INF] SYNC: Processed 60 blocks in 10.27s (25725 transactions, height 585156/607469 (96.33%), 2019-06-01 12:29:39 -0700 PDT, ~4 MiB cache)2019-11-03 15:30:01.029 [INF] SYNC: Processed 86 blocks in 10.02s (21938 transactions, height 585242/607469 (96.34%), 2019-06-01 23:20:23 -0700 PDT, ~7 MiB cache)2019-11-03 15:30:11.069 [INF] SYNC: Processed 43 blocks in 10.03s (20621 transactions, height 585285/607469 (96.35%), 2019-06-02 08:59:21 -0700 PDT, ~9 MiB cache)2019-11-03 15:30:21.187 [INF] SYNC: Processed 63 blocks in 10.11s (26008 transactions, height 585348/607469 (96.36%), 2019-06-02 20:33:57 -0700 PDT, ~12 MiB cache)2019-11-03 15:30:24.440 [INF] CHAN: Flushing UTXO cache of ~14 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:30:38.969 [INF] SYNC: Processed 32 blocks in 17.78s (8685 transactions, height 585380/607469 (96.36%), 2019-06-03 00:22:43 -0700 PDT, ~0 MiB cache)2019-11-03 15:30:49.014 [INF] SYNC: Processed 63 blocks in 10.04s (24322 transactions, height 585443/607469 (96.37%), 2019-06-03 11:48:01 -0700 PDT, ~3 MiB cache)2019-11-03 15:30:59.026 [INF] SYNC: Processed 68 blocks in 10.01s (28767 transactions, height 585511/607469 (96.39%), 2019-06-03 23:49:27 -0700 PDT, ~7 MiB cache)2019-11-03 15:31:09.929 [INF] SYNC: Processed 60 blocks in 10.9s (21711 transactions, height 585571/607469 (96.40%), 2019-06-04 09:36:47 -0700 PDT, ~11 MiB cache)2019-11-03 15:31:20.307 [INF] SYNC: Processed 76 blocks in 10.37s (26488 transactions, height 585647/607469 (96.41%), 2019-06-04 20:29:04 -0700 PDT, ~14 MiB cache)2019-11-03 15:31:24.856 [INF] CHAN: Flushing UTXO cache of ~16 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:31:30.353 [INF] SYNC: Processed 49 blocks in 10.04s (15195 transactions, height 585696/607469 (96.42%), 2019-06-05 04:13:37 -0700 PDT, ~1 MiB cache)2019-11-03 15:31:41.354 [INF] SYNC: Processed 31 blocks in 11s (16731 transactions, height 585727/607469 (96.42%), 2019-06-05 11:54:30 -0700 PDT, ~4 MiB cache)2019-11-03 15:31:51.418 [INF] SYNC: Processed 86 blocks in 10.06s (24984 transactions, height 585813/607469 (96.44%), 2019-06-06 02:25:35 -0700 PDT, ~7 MiB cache)2019-11-03 15:32:01.501 [INF] SYNC: Processed 82 blocks in 10.08s (27406 transactions, height 585895/607469 (96.45%), 2019-06-06 14:35:46 -0700 PDT, ~9 MiB cache)2019-11-03 15:32:11.182 [INF] CHAN: Flushing UTXO cache of ~13 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:32:12.328 [INF] SYNC: Processed 85 blocks in 10.82s (27668 transactions, height 585980/607469 (96.46%), 2019-06-07 05:04:05 -0700 PDT, ~0 MiB cache)2019-11-03 15:32:22.418 [INF] SYNC: Processed 84 blocks in 10.08s (26474 transactions, height 586064/607469 (96.48%), 2019-06-07 18:15:28 -0700 PDT, ~3 MiB cache)2019-11-03 15:32:32.426 [INF] SYNC: Processed 84 blocks in 10s (25205 transactions, height 586148/607469 (96.49%), 2019-06-08 09:12:02 -0700 PDT, ~6 MiB cache)2019-11-03 15:32:36.070 [INF] CHAN: Adding orphan block 000000000000000001c0e3e10bce30d0b79e0acde689081bea889bf03151dc56 with parent 0000000000000000018defdc06c993bf27c5c1ae3ef275461f7e07e77e0c791d2019-11-03 15:32:42.468 [INF] SYNC: Processed 94 blocks in 10.04s (22165 transactions, height 586242/607469 (96.51%), 2019-06-08 22:26:54 -0700 PDT, ~10 MiB cache)2019-11-03 15:32:48.181 [INF] CHAN: Flushing UTXO cache of ~12 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:32:52.497 [INF] SYNC: Processed 67 blocks in 10.02s (23402 transactions, height 586309/607469 (96.52%), 2019-06-09 11:30:58 -0700 PDT, ~2 MiB cache)2019-11-03 15:33:02.539 [INF] SYNC: Processed 106 blocks in 10.04s (30376 transactions, height 586415/607469 (96.53%), 2019-06-10 04:14:46 -0700 PDT, ~5 MiB cache)2019-11-03 15:33:12.817 [INF] SYNC: Processed 85 blocks in 10.27s (29561 transactions, height 586500/607469 (96.55%), 2019-06-10 19:20:02 -0700 PDT, ~9 MiB cache)2019-11-03 15:33:18.812 [INF] CHAN: Flushing UTXO cache of ~15 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:33:23.008 [INF] SYNC: Processed 90 blocks in 10.19s (25249 transactions, height 586590/607469 (96.56%), 2019-06-11 09:35:42 -0700 PDT, ~1 MiB cache)2019-11-03 15:33:33.082 [INF] SYNC: Processed 76 blocks in 10.07s (29411 transactions, height 586666/607469 (96.58%), 2019-06-12 00:49:58 -0700 PDT, ~5 MiB cache)2019-11-03 15:33:43.120 [INF] SYNC: Processed 70 blocks in 10.03s (19837 transactions, height 586736/607469 (96.59%), 2019-06-12 09:51:26 -0700 PDT, ~7 MiB cache)2019-11-03 15:33:53.648 [INF] SYNC: Processed 77 blocks in 10.52s (29306 transactions, height 586813/607469 (96.60%), 2019-06-13 01:25:10 -0700 PDT, ~10 MiB cache)2019-11-03 15:33:59.683 [INF] CHAN: Flushing UTXO cache of ~13 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:34:03.675 [INF] SYNC: Processed 99 blocks in 10.02s (22312 transactions, height 586912/607469 (96.62%), 2019-06-13 13:59:24 -0700 PDT, ~1 MiB cache)2019-11-03 15:34:13.689 [INF] SYNC: Processed 111 blocks in 10.01s (21424 transactions, height 587023/607469 (96.63%), 2019-06-14 11:17:54 -0700 PDT, ~5 MiB cache)2019-11-03 15:34:23.792 [INF] SYNC: Processed 90 blocks in 10.1s (27881 transactions, height 587113/607469 (96.65%), 2019-06-15 01:42:56 -0700 PDT, ~8 MiB cache)2019-11-03 15:34:32.301 [INF] CHAN: Flushing UTXO cache of ~12 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:34:33.944 [INF] SYNC: Processed 67 blocks in 10.15s (24293 transactions, height 587180/607469 (96.66%), 2019-06-15 13:54:21 -0700 PDT, ~0 MiB cache)2019-11-03 15:34:45.133 [INF] SYNC: Processed 1 block in 11.18s (85 transactions, height 587181/607469 (96.66%), 2019-06-15 13:57:19 -0700 PDT, ~0 MiB cache)2019-11-03 15:34:55.225 [INF] SYNC: Processed 77 blocks in 10.09s (28218 transactions, height 587258/607469 (96.67%), 2019-06-16 03:04:07 -0700 PDT, ~3 MiB cache)2019-11-03 15:35:05.394 [INF] SYNC: Processed 71 blocks in 10.16s (29550 transactions, height 587329/607469 (96.68%), 2019-06-16 15:44:22 -0700 PDT, ~6 MiB cache)2019-11-03 15:35:15.425 [INF] SYNC: Processed 98 blocks in 10.03s (31811 transactions, height 587427/607469 (96.70%), 2019-06-17 07:16:03 -0700 PDT, ~10 MiB cache)2019-11-03 15:35:23.298 [INF] CHAN: Flushing UTXO cache of ~13 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:35:25.461 [INF] SYNC: Processed 78 blocks in 10.03s (28315 transactions, height 587505/607469 (96.71%), 2019-06-17 19:01:04 -0700 PDT, ~0 MiB cache)2019-11-03 15:35:35.976 [INF] SYNC: Processed 72 blocks in 10.51s (27714 transactions, height 587577/607469 (96.73%), 2019-06-18 08:18:21 -0700 PDT, ~6 MiB cache)2019-11-03 15:35:46.089 [INF] SYNC: Processed 84 blocks in 10.11s (25752 transactions, height 587661/607469 (96.74%), 2019-06-18 20:25:26 -0700 PDT, ~9 MiB cache)2019-11-03 15:35:56.280 [INF] SYNC: Processed 46 blocks in 10.19s (17441 transactions, height 587707/607469 (96.75%), 2019-06-19 05:57:38 -0700 PDT, ~11 MiB cache)2019-11-03 15:36:06.281 [INF] SYNC: Processed 70 blocks in 10s (25346 transactions, height 587777/607469 (96.76%), 2019-06-19 18:59:57 -0700 PDT, ~14 MiB cache)2019-11-03 15:36:06.327 [INF] CHAN: Flushing UTXO cache of ~15 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:36:16.283 [INF] SYNC: Processed 75 blocks in 10s (20833 transactions, height 587852/607469 (96.77%), 2019-06-20 06:41:40 -0700 PDT, ~4 MiB cache)2019-11-03 15:36:26.390 [INF] SYNC: Processed 89 blocks in 10.1s (35954 transactions, height 587941/607469 (96.79%), 2019-06-20 22:24:54 -0700 PDT, ~7 MiB cache)2019-11-03 15:36:36.684 [INF] SYNC: Processed 84 blocks in 10.29s (30895 transactions, height 588025/607469 (96.80%), 2019-06-21 11:41:31 -0700 PDT, ~10 MiB cache)2019-11-03 15:36:44.823 [INF] CHAN: Flushing UTXO cache of ~14 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:36:46.738 [INF] SYNC: Processed 56 blocks in 10.05s (26745 transactions, height 588081/607469 (96.81%), 2019-06-21 22:09:43 -0700 PDT, ~0 MiB cache)2019-11-03 15:36:56.901 [INF] SYNC: Processed 62 blocks in 10.16s (27007 transactions, height 588143/607469 (96.82%), 2019-06-22 07:50:04 -0700 PDT, ~3 MiB cache)2019-11-03 15:37:06.926 [INF] SYNC: Processed 49 blocks in 10.02s (18282 transactions, height 588192/607469 (96.83%), 2019-06-22 13:29:16 -0700 PDT, ~5 MiB cache)2019-11-03 15:37:17.208 [INF] SYNC: Processed 57 blocks in 10.28s (27206 transactions, height 588249/607469 (96.84%), 2019-06-23 00:57:57 -0700 PDT, ~8 MiB cache)2019-11-03 15:37:27.401 [INF] SYNC: Processed 46 blocks in 10.19s (20503 transactions, height 588295/607469 (96.84%), 2019-06-23 09:28:25 -0700 PDT, ~11 MiB cache)2019-11-03 15:37:37.607 [INF] SYNC: Processed 62 blocks in 10.2s (23195 transactions, height 588357/607469 (96.85%), 2019-06-23 18:08:22 -0700 PDT, ~13 MiB cache)2019-11-03 15:37:41.402 [INF] CHAN: Flushing UTXO cache of ~16 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:37:47.645 [INF] SYNC: Processed 49 blocks in 10.03s (21339 transactions, height 588406/607469 (96.86%), 2019-06-24 03:14:28 -0700 PDT, ~2 MiB cache)2019-11-03 15:37:57.661 [INF] SYNC: Processed 81 blocks in 10.01s (16805 transactions, height 588487/607469 (96.88%), 2019-06-24 15:53:14 -0700 PDT, ~5 MiB cache)2019-11-03 15:38:08.126 [INF] SYNC: Processed 59 blocks in 10.46s (28951 transactions, height 588546/607469 (96.88%), 2019-06-25 04:06:46 -0700 PDT, ~10 MiB cache)2019-11-03 15:38:18.173 [INF] SYNC: Processed 41 blocks in 10.04s (18743 transactions, height 588587/607469 (96.89%), 2019-06-25 11:17:25 -0700 PDT, ~13 MiB cache)2019-11-03 15:38:28.911 [INF] SYNC: Processed 75 blocks in 10.73s (26856 transactions, height 588662/607469 (96.90%), 2019-06-25 21:08:27 -0700 PDT, ~15 MiB cache)2019-11-03 15:38:36.397 [INF] CHAN: Flushing UTXO cache of ~17 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:38:40.966 [INF] SYNC: Processed 19 blocks in 12.05s (15664 transactions, height 588681/607469 (96.91%), 2019-06-26 01:35:23 -0700 PDT, ~0 MiB cache)2019-11-03 15:38:51.780 [INF] SYNC: Processed 52 blocks in 10.81s (20308 transactions, height 588733/607469 (96.92%), 2019-06-26 13:25:40 -0700 PDT, ~4 MiB cache)2019-11-03 15:39:02.244 [INF] SYNC: Processed 96 blocks in 10.46s (33014 transactions, height 588829/607469 (96.93%), 2019-06-27 00:17:26 -0700 PDT, ~8 MiB cache)2019-11-03 15:39:12.351 [INF] SYNC: Processed 19 blocks in 10.1s (21859 transactions, height 588848/607469 (96.93%), 2019-06-27 07:08:28 -0700 PDT, ~10 MiB cache)2019-11-03 15:39:22.847 [INF] SYNC: Processed 52 blocks in 10.49s (31676 transactions, height 588900/607469 (96.94%), 2019-06-27 17:24:52 -0700 PDT, ~13 MiB cache)2019-11-03 15:39:29.847 [INF] CHAN: Flushing UTXO cache of ~16 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:39:33.133 [INF] SYNC: Processed 81 blocks in 10.28s (21747 transactions, height 588981/607469 (96.96%), 2019-06-28 01:11:37 -0700 PDT, ~0 MiB cache)2019-11-03 15:39:43.629 [INF] SYNC: Processed 35 blocks in 10.49s (26334 transactions, height 589016/607469 (96.96%), 2019-06-28 10:44:50 -0700 PDT, ~3 MiB cache)2019-11-03 15:39:53.873 [INF] SYNC: Processed 56 blocks in 10.24s (29765 transactions, height 589072/607469 (96.97%), 2019-06-28 22:31:48 -0700 PDT, ~6 MiB cache)2019-11-03 15:40:03.874 [INF] SYNC: Processed 89 blocks in 10s (28058 transactions, height 589161/607469 (96.99%), 2019-06-29 10:04:08 -0700 PDT, ~9 MiB cache)2019-11-03 15:40:14.050 [INF] SYNC: Processed 57 blocks in 10.17s (25505 transactions, height 589218/607469 (97.00%), 2019-06-29 21:36:27 -0700 PDT, ~12 MiB cache)2019-11-03 15:40:19.398 [INF] CHAN: Flushing UTXO cache of ~14 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:40:24.128 [INF] SYNC: Processed 76 blocks in 10.07s (23256 transactions, height 589294/607469 (97.01%), 2019-06-30 07:24:15 -0700 PDT, ~1 MiB cache)2019-11-03 15:40:34.180 [INF] SYNC: Processed 56 blocks in 10.05s (30835 transactions, height 589350/607469 (97.02%), 2019-06-30 19:37:14 -0700 PDT, ~4 MiB cache)2019-11-03 15:40:44.489 [INF] SYNC: Processed 91 blocks in 10.3s (27460 transactions, height 589441/607469 (97.03%), 2019-07-01 07:07:21 -0700 PDT, ~7 MiB cache)2019-11-03 15:40:54.554 [INF] SYNC: Processed 92 blocks in 10.06s (16114 transactions, height 589533/607469 (97.05%), 2019-07-02 00:38:33 -0700 PDT, ~11 MiB cache)2019-11-03 15:40:58.709 [INF] CHAN: Flushing UTXO cache of ~15 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:41:04.812 [INF] SYNC: Processed 72 blocks in 10.25s (7296 transactions, height 589605/607469 (97.06%), 2019-07-02 10:53:14 -0700 PDT, ~1 MiB cache)2019-11-03 15:41:15.273 [INF] SYNC: Processed 48 blocks in 10.46s (26648 transactions, height 589653/607469 (97.07%), 2019-07-02 23:20:52 -0700 PDT, ~5 MiB cache)2019-11-03 15:41:25.494 [INF] SYNC: Processed 74 blocks in 10.22s (19021 transactions, height 589727/607469 (97.08%), 2019-07-03 08:20:57 -0700 PDT, ~8 MiB cache)2019-11-03 15:41:35.581 [INF] SYNC: Processed 73 blocks in 10.08s (30109 transactions, height 589800/607469 (97.09%), 2019-07-03 20:23:22 -0700 PDT, ~11 MiB cache)2019-11-03 15:41:46.331 [INF] SYNC: Processed 60 blocks in 10.75s (30898 transactions, height 589860/607469 (97.10%), 2019-07-04 09:26:20 -0700 PDT, ~14 MiB cache)2019-11-03 15:41:47.810 [INF] CHAN: Flushing UTXO cache of ~15 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:41:56.353 [INF] SYNC: Processed 108 blocks in 10.02s (15206 transactions, height 589968/607469 (97.12%), 2019-07-05 00:57:17 -0700 PDT, ~3 MiB cache)2019-11-03 15:42:06.491 [INF] SYNC: Processed 97 blocks in 10.13s (26385 transactions, height 590065/607469 (97.13%), 2019-07-05 16:21:30 -0700 PDT, ~7 MiB cache)2019-11-03 15:42:16.779 [INF] SYNC: Processed 66 blocks in 10.28s (27038 transactions, height 590131/607469 (97.15%), 2019-07-06 05:19:09 -0700 PDT, ~10 MiB cache)2019-11-03 15:42:22.832 [INF] CHAN: Flushing UTXO cache of ~13 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:42:27.158 [INF] SYNC: Processed 50 blocks in 10.37s (19023 transactions, height 590181/607469 (97.15%), 2019-07-06 13:02:01 -0700 PDT, ~0 MiB cache)2019-11-03 15:42:37.351 [INF] SYNC: Processed 88 blocks in 10.19s (30139 transactions, height 590269/607469 (97.17%), 2019-07-07 03:57:25 -0700 PDT, ~4 MiB cache)2019-11-03 15:42:47.519 [INF] SYNC: Processed 80 blocks in 10.16s (29061 transactions, height 590349/607469 (97.18%), 2019-07-07 16:53:06 -0700 PDT, ~7 MiB cache)2019-11-03 15:42:57.640 [INF] SYNC: Processed 65 blocks in 10.12s (25064 transactions, height 590414/607469 (97.19%), 2019-07-08 05:27:06 -0700 PDT, ~10 MiB cache)2019-11-03 15:43:05.558 [INF] CHAN: Flushing UTXO cache of ~15 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:43:08.933 [INF] SYNC: Processed 66 blocks in 11.29s (19500 transactions, height 590480/607469 (97.20%), 2019-07-08 14:04:44 -0700 PDT, ~0 MiB cache)2019-11-03 15:43:19.165 [INF] SYNC: Processed 56 blocks in 10.23s (27467 transactions, height 590536/607469 (97.21%), 2019-07-09 01:00:47 -0700 PDT, ~3 MiB cache)2019-11-03 15:43:29.307 [INF] SYNC: Processed 63 blocks in 10.14s (22440 transactions, height 590599/607469 (97.22%), 2019-07-09 10:04:35 -0700 PDT, ~8 MiB cache)2019-11-03 15:43:39.378 [INF] SYNC: Processed 64 blocks in 10.07s (26502 transactions, height 590663/607469 (97.23%), 2019-07-09 20:55:14 -0700 PDT, ~11 MiB cache)2019-11-03 15:43:49.936 [INF] SYNC: Processed 46 blocks in 10.55s (22901 transactions, height 590709/607469 (97.24%), 2019-07-10 06:51:08 -0700 PDT, ~13 MiB cache)2019-11-03 15:44:00.231 [INF] SYNC: Processed 60 blocks in 10.29s (21501 transactions, height 590769/607469 (97.25%), 2019-07-10 14:00:17 -0700 PDT, ~15 MiB cache)2019-11-03 15:44:01.745 [INF] CHAN: Flushing UTXO cache of ~16 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:44:10.432 [INF] SYNC: Processed 42 blocks in 10.2s (21715 transactions, height 590811/607469 (97.26%), 2019-07-10 21:57:26 -0700 PDT, ~2 MiB cache)2019-11-03 15:44:20.539 [INF] SYNC: Processed 37 blocks in 10.1s (27821 transactions, height 590848/607469 (97.26%), 2019-07-11 08:28:34 -0700 PDT, ~5 MiB cache)2019-11-03 15:44:30.649 [INF] SYNC: Processed 89 blocks in 10.11s (24629 transactions, height 590937/607469 (97.28%), 2019-07-11 17:31:40 -0700 PDT, ~9 MiB cache)2019-11-03 15:44:40.753 [INF] SYNC: Processed 62 blocks in 10.1s (27868 transactions, height 590999/607469 (97.29%), 2019-07-12 05:06:34 -0700 PDT, ~12 MiB cache)2019-11-03 15:44:51.182 [INF] SYNC: Processed 42 blocks in 10.42s (25319 transactions, height 591041/607469 (97.30%), 2019-07-12 15:54:15 -0700 PDT, ~14 MiB cache)2019-11-03 15:44:53.510 [INF] CHAN: Flushing UTXO cache of ~16 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:45:01.256 [INF] SYNC: Processed 82 blocks in 10.07s (22787 transactions, height 591123/607469 (97.31%), 2019-07-13 03:05:49 -0700 PDT, ~2 MiB cache)2019-11-03 15:45:11.567 [INF] SYNC: Processed 63 blocks in 10.31s (26594 transactions, height 591186/607469 (97.32%), 2019-07-13 14:21:25 -0700 PDT, ~4 MiB cache)2019-11-03 15:45:21.625 [INF] SYNC: Processed 92 blocks in 10.05s (31004 transactions, height 591278/607469 (97.33%), 2019-07-14 03:58:57 -0700 PDT, ~8 MiB cache)2019-11-03 15:45:31.865 [INF] SYNC: Processed 50 blocks in 10.23s (27622 transactions, height 591328/607469 (97.34%), 2019-07-14 14:42:52 -0700 PDT, ~10 MiB cache)2019-11-03 15:45:40.778 [INF] CHAN: Flushing UTXO cache of ~14 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:45:44.018 [INF] SYNC: Processed 52 blocks in 12.15s (23132 transactions, height 591380/607469 (97.35%), 2019-07-14 23:33:48 -0700 PDT, ~0 MiB cache)2019-11-03 15:45:54.019 [INF] SYNC: Processed 79 blocks in 10s (26286 transactions, height 591459/607469 (97.36%), 2019-07-15 09:54:56 -0700 PDT, ~3 MiB cache)2019-11-03 15:46:04.091 [INF] SYNC: Processed 56 blocks in 10.07s (30588 transactions, height 591515/607469 (97.37%), 2019-07-15 22:29:31 -0700 PDT, ~6 MiB cache)2019-11-03 15:46:14.285 [INF] SYNC: Processed 77 blocks in 10.19s (25550 transactions, height 591592/607469 (97.39%), 2019-07-16 09:54:37 -0700 PDT, ~12 MiB cache)2019-11-03 15:46:25.055 [INF] SYNC: Processed 53 blocks in 10.77s (20909 transactions, height 591645/607469 (97.40%), 2019-07-16 18:18:57 -0700 PDT, ~16 MiB cache)2019-11-03 15:46:30.811 [INF] CHAN: Flushing UTXO cache of ~18 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:46:35.355 [INF] SYNC: Processed 35 blocks in 10.29s (16256 transactions, height 591680/607469 (97.40%), 2019-07-17 01:20:49 -0700 PDT, ~0 MiB cache)2019-11-03 15:46:46.480 [INF] SYNC: Processed 5 blocks in 11.12s (326 transactions, height 591685/607469 (97.40%), 2019-07-17 01:56:16 -0700 PDT, ~0 MiB cache)2019-11-03 15:46:56.503 [INF] SYNC: Processed 90 blocks in 10.02s (20654 transactions, height 591775/607469 (97.42%), 2019-07-17 14:33:47 -0700 PDT, ~4 MiB cache)2019-11-03 15:47:06.516 [INF] SYNC: Processed 53 blocks in 10.01s (26550 transactions, height 591828/607469 (97.43%), 2019-07-18 02:09:38 -0700 PDT, ~7 MiB cache)2019-11-03 15:47:16.935 [INF] SYNC: Processed 47 blocks in 10.41s (20193 transactions, height 591875/607469 (97.43%), 2019-07-18 09:54:05 -0700 PDT, ~10 MiB cache)2019-11-03 15:47:26.960 [INF] SYNC: Processed 68 blocks in 10.02s (25931 transactions, height 591943/607469 (97.44%), 2019-07-18 19:46:39 -0700 PDT, ~13 MiB cache)2019-11-03 15:47:33.158 [INF] CHAN: Flushing UTXO cache of ~15 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:47:41.406 [INF] SYNC: Processed 37 blocks in 14.44s (15578 transactions, height 591980/607469 (97.45%), 2019-07-19 02:27:19 -0700 PDT, ~0 MiB cache)2019-11-03 15:47:51.618 [INF] SYNC: Processed 56 blocks in 10.21s (28052 transactions, height 592036/607469 (97.46%), 2019-07-19 13:07:18 -0700 PDT, ~4 MiB cache)2019-11-03 15:48:01.758 [INF] SYNC: Processed 74 blocks in 10.14s (24210 transactions, height 592110/607469 (97.47%), 2019-07-19 22:59:27 -0700 PDT, ~8 MiB cache)2019-11-03 15:48:13.981 [INF] SYNC: Processed 59 blocks in 12.22s (26482 transactions, height 592169/607469 (97.48%), 2019-07-20 10:06:58 -0700 PDT, ~10 MiB cache)2019-11-03 15:48:24.023 [INF] SYNC: Processed 47 blocks in 10.04s (19275 transactions, height 592216/607469 (97.49%), 2019-07-20 18:28:48 -0700 PDT, ~11 MiB cache)2019-11-03 15:48:30.689 [INF] CHAN: Flushing UTXO cache of ~14 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:48:40.019 [INF] SYNC: Processed 64 blocks in 15.99s (16336 transactions, height 592280/607469 (97.50%), 2019-07-21 03:03:56 -0700 PDT, ~0 MiB cache)2019-11-03 15:48:50.087 [INF] SYNC: Processed 65 blocks in 10.06s (26481 transactions, height 592345/607469 (97.51%), 2019-07-21 16:06:40 -0700 PDT, ~4 MiB cache)2019-11-03 15:49:00.284 [INF] SYNC: Processed 86 blocks in 10.19s (23358 transactions, height 592431/607469 (97.52%), 2019-07-22 05:15:47 -0700 PDT, ~6 MiB cache)2019-11-03 15:49:10.429 [INF] SYNC: Processed 75 blocks in 10.14s (26185 transactions, height 592506/607469 (97.54%), 2019-07-22 17:54:34 -0700 PDT, ~8 MiB cache)2019-11-03 15:49:20.548 [INF] SYNC: Processed 72 blocks in 10.11s (23775 transactions, height 592578/607469 (97.55%), 2019-07-23 05:17:54 -0700 PDT, ~14 MiB cache)2019-11-03 15:49:20.928 [INF] CHAN: Flushing UTXO cache of ~15 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:49:30.718 [INF] SYNC: Processed 22 blocks in 10.17s (10514 transactions, height 592600/607469 (97.55%), 2019-07-23 09:52:53 -0700 PDT, ~1 MiB cache)2019-11-03 15:49:40.898 [INF] SYNC: Processed 50 blocks in 10.17s (19260 transactions, height 592650/607469 (97.56%), 2019-07-23 18:30:43 -0700 PDT, ~3 MiB cache)2019-11-03 15:49:50.912 [INF] SYNC: Processed 53 blocks in 10.01s (16426 transactions, height 592703/607469 (97.57%), 2019-07-24 03:21:18 -0700 PDT, ~6 MiB cache)2019-11-03 15:50:00.941 [INF] SYNC: Processed 98 blocks in 10.02s (21280 transactions, height 592801/607469 (97.59%), 2019-07-24 18:54:37 -0700 PDT, ~9 MiB cache)2019-11-03 15:50:10.077 [INF] CHAN: Flushing UTXO cache of ~12 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:50:13.576 [INF] SYNC: Processed 79 blocks in 12.63s (25882 transactions, height 592880/607469 (97.60%), 2019-07-25 07:54:25 -0700 PDT, ~0 MiB cache)2019-11-03 15:50:23.612 [INF] SYNC: Processed 75 blocks in 10.03s (24066 transactions, height 592955/607469 (97.61%), 2019-07-25 20:57:14 -0700 PDT, ~3 MiB cache)2019-11-03 15:50:33.620 [INF] SYNC: Processed 75 blocks in 10s (20188 transactions, height 593030/607469 (97.62%), 2019-07-26 08:10:21 -0700 PDT, ~6 MiB cache)2019-11-03 15:50:43.776 [INF] SYNC: Processed 69 blocks in 10.15s (21680 transactions, height 593099/607469 (97.63%), 2019-07-26 19:33:12 -0700 PDT, ~8 MiB cache)2019-11-03 15:50:53.788 [INF] SYNC: Processed 68 blocks in 10.01s (21587 transactions, height 593167/607469 (97.65%), 2019-07-27 07:24:32 -0700 PDT, ~10 MiB cache)2019-11-03 15:50:55.407 [INF] CHAN: Flushing UTXO cache of ~12 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:50:58.918 [INF] CHAN: Adding orphan block 0000000000000000020d399e6ec5f902f2a36c2c63e521461117e4cdcfcb8471 with parent 000000000000000001c0e3e10bce30d0b79e0acde689081bea889bf03151dc562019-11-03 15:51:04.047 [INF] SYNC: Processed 33 blocks in 10.25s (11948 transactions, height 593200/607469 (97.65%), 2019-07-27 13:29:40 -0700 PDT, ~1 MiB cache)2019-11-03 15:51:14.241 [INF] SYNC: Processed 84 blocks in 10.19s (21376 transactions, height 593284/607469 (97.66%), 2019-07-28 02:26:46 -0700 PDT, ~4 MiB cache)2019-11-03 15:51:24.478 [INF] SYNC: Processed 71 blocks in 10.23s (23226 transactions, height 593355/607469 (97.68%), 2019-07-28 16:09:16 -0700 PDT, ~6 MiB cache)2019-11-03 15:51:34.534 [INF] SYNC: Processed 81 blocks in 10.05s (21054 transactions, height 593436/607469 (97.69%), 2019-07-29 04:13:11 -0700 PDT, ~8 MiB cache)2019-11-03 15:51:41.763 [INF] CHAN: Flushing UTXO cache of ~11 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:51:45.389 [INF] SYNC: Processed 44 blocks in 10.85s (15607 transactions, height 593480/607469 (97.70%), 2019-07-29 12:07:07 -0700 PDT, ~0 MiB cache)2019-11-03 15:51:55.953 [INF] SYNC: Processed 87 blocks in 10.56s (23264 transactions, height 593567/607469 (97.71%), 2019-07-30 02:38:41 -0700 PDT, ~4 MiB cache)2019-11-03 15:52:06.248 [INF] SYNC: Processed 63 blocks in 10.29s (21242 transactions, height 593630/607469 (97.72%), 2019-07-30 13:15:19 -0700 PDT, ~8 MiB cache)2019-11-03 15:52:16.406 [INF] SYNC: Processed 75 blocks in 10.15s (20698 transactions, height 593705/607469 (97.73%), 2019-07-31 00:36:31 -0700 PDT, ~11 MiB cache)2019-11-03 15:52:26.558 [INF] SYNC: Processed 57 blocks in 10.15s (23411 transactions, height 593762/607469 (97.74%), 2019-07-31 11:26:16 -0700 PDT, ~13 MiB cache)2019-11-03 15:52:28.575 [INF] CHAN: Flushing UTXO cache of ~15 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:52:36.671 [INF] SYNC: Processed 48 blocks in 10.11s (14775 transactions, height 593810/607469 (97.75%), 2019-07-31 18:44:13 -0700 PDT, ~1 MiB cache)2019-11-03 15:52:46.919 [INF] SYNC: Processed 71 blocks in 10.24s (21870 transactions, height 593881/607469 (97.76%), 2019-08-01 06:38:19 -0700 PDT, ~4 MiB cache)2019-11-03 15:52:56.922 [INF] SYNC: Processed 55 blocks in 10s (23409 transactions, height 593936/607469 (97.77%), 2019-08-01 16:44:55 -0700 PDT, ~6 MiB cache)2019-11-03 15:53:07.238 [INF] SYNC: Processed 73 blocks in 10.31s (22815 transactions, height 594009/607469 (97.78%), 2019-08-02 04:17:53 -0700 PDT, ~9 MiB cache)2019-11-03 15:53:17.580 [INF] SYNC: Processed 64 blocks in 10.34s (24046 transactions, height 594073/607469 (97.79%), 2019-08-02 16:00:20 -0700 PDT, ~11 MiB cache)2019-11-03 15:53:18.156 [INF] CHAN: Flushing UTXO cache of ~13 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:53:27.892 [INF] SYNC: Processed 49 blocks in 10.31s (14447 transactions, height 594122/607469 (97.80%), 2019-08-02 23:12:04 -0700 PDT, ~1 MiB cache)2019-11-03 15:53:35.977 [INF] CHAN: Adding orphan block 000000000000000002404d2e7d56a86388b4a1fe98a7ab36ca9700fdddccc4de with parent 0000000000000000020d399e6ec5f902f2a36c2c63e521461117e4cdcfcb84712019-11-03 15:53:37.924 [INF] SYNC: Processed 64 blocks in 10.03s (20728 transactions, height 594186/607469 (97.81%), 2019-08-03 10:03:49 -0700 PDT, ~4 MiB cache)2019-11-03 15:53:47.984 [INF] SYNC: Processed 62 blocks in 10.05s (20166 transactions, height 594248/607469 (97.82%), 2019-08-03 21:11:11 -0700 PDT, ~6 MiB cache)2019-11-03 15:53:58.040 [INF] SYNC: Processed 131 blocks in 10.05s (18501 transactions, height 594379/607469 (97.85%), 2019-08-04 17:42:04 -0700 PDT, ~10 MiB cache)2019-11-03 15:53:58.091 [INF] CHAN: Flushing UTXO cache of ~11 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:54:08.060 [INF] SYNC: Processed 53 blocks in 10.01s (20400 transactions, height 594432/607469 (97.85%), 2019-08-05 02:31:28 -0700 PDT, ~3 MiB cache)2019-11-03 15:54:18.063 [INF] SYNC: Processed 62 blocks in 10s (25203 transactions, height 594494/607469 (97.86%), 2019-08-05 13:28:35 -0700 PDT, ~6 MiB cache)2019-11-03 15:54:28.143 [INF] SYNC: Processed 75 blocks in 10.07s (23124 transactions, height 594569/607469 (97.88%), 2019-08-06 00:46:36 -0700 PDT, ~11 MiB cache)2019-11-03 15:54:38.757 [INF] SYNC: Processed 52 blocks in 10.61s (21781 transactions, height 594621/607469 (97.88%), 2019-08-06 10:36:10 -0700 PDT, ~15 MiB cache)2019-11-03 15:54:46.614 [INF] CHAN: Flushing UTXO cache of ~19 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:54:51.718 [INF] SYNC: Processed 59 blocks in 12.96s (19447 transactions, height 594680/607469 (97.89%), 2019-08-06 20:11:02 -0700 PDT, ~0 MiB cache)2019-11-03 15:55:01.832 [INF] SYNC: Processed 57 blocks in 10.11s (17696 transactions, height 594737/607469 (97.90%), 2019-08-07 04:41:02 -0700 PDT, ~3 MiB cache)2019-11-03 15:55:12.035 [INF] SYNC: Processed 53 blocks in 10.2s (27287 transactions, height 594790/607469 (97.91%), 2019-08-07 15:45:53 -0700 PDT, ~6 MiB cache)2019-11-03 15:55:22.132 [INF] SYNC: Processed 61 blocks in 10.09s (19969 transactions, height 594851/607469 (97.92%), 2019-08-08 00:27:17 -0700 PDT, ~8 MiB cache)2019-11-03 15:55:32.209 [INF] SYNC: Processed 55 blocks in 10.07s (20688 transactions, height 594906/607469 (97.93%), 2019-08-08 09:23:59 -0700 PDT, ~11 MiB cache)2019-11-03 15:55:42.270 [INF] SYNC: Processed 59 blocks in 10.06s (24483 transactions, height 594965/607469 (97.94%), 2019-08-08 21:20:16 -0700 PDT, ~13 MiB cache)2019-11-03 15:55:44.319 [INF] CHAN: Flushing UTXO cache of ~14 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:55:52.427 [INF] SYNC: Processed 49 blocks in 10.15s (17464 transactions, height 595014/607469 (97.95%), 2019-08-09 05:54:40 -0700 PDT, ~1 MiB cache)2019-11-03 15:56:02.454 [INF] SYNC: Processed 95 blocks in 10.02s (30099 transactions, height 595109/607469 (97.97%), 2019-08-09 20:21:49 -0700 PDT, ~4 MiB cache)2019-11-03 15:56:11.242 [INF] CHAN: Adding orphan block 00000000000000000185cddcc3f7c6d3fe120f8a4df268277773196a575615eb with parent 000000000000000002404d2e7d56a86388b4a1fe98a7ab36ca9700fdddccc4de2019-11-03 15:56:15.576 [INF] SYNC: Processed 72 blocks in 13.12s (23276 transactions, height 595181/607474 (97.98%), 2019-08-10 09:17:16 -0700 PDT, ~7 MiB cache)2019-11-03 15:56:24.621 [INF] CHAN: Flushing UTXO cache of ~10 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:56:27.174 [INF] SYNC: Processed 99 blocks in 11.59s (25771 transactions, height 595280/607469 (97.99%), 2019-08-10 23:50:27 -0700 PDT, ~0 MiB cache)2019-11-03 15:56:37.253 [INF] SYNC: Processed 72 blocks in 10.07s (23184 transactions, height 595352/607469 (98.01%), 2019-08-11 11:29:42 -0700 PDT, ~3 MiB cache)2019-11-03 15:56:47.279 [INF] SYNC: Processed 73 blocks in 10.02s (21276 transactions, height 595425/607469 (98.02%), 2019-08-11 23:51:24 -0700 PDT, ~5 MiB cache)2019-11-03 15:56:57.498 [INF] SYNC: Processed 63 blocks in 10.21s (20480 transactions, height 595488/607469 (98.03%), 2019-08-12 11:40:02 -0700 PDT, ~7 MiB cache)2019-11-03 15:57:07.244 [INF] CHAN: Flushing UTXO cache of ~14 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:57:11.308 [INF] SYNC: Processed 92 blocks in 13.8s (20977 transactions, height 595580/607469 (98.04%), 2019-08-13 01:53:45 -0700 PDT, ~0 MiB cache)2019-11-03 15:57:21.551 [INF] SYNC: Processed 61 blocks in 10.24s (22279 transactions, height 595641/607469 (98.05%), 2019-08-13 11:38:11 -0700 PDT, ~3 MiB cache)2019-11-03 15:57:26.820 [INF] CHAN: Adding orphan block 0000000000000000026f4729cab610884a36e0c5e2ed833a0755eb02f8d7276e with parent 00000000000000000185cddcc3f7c6d3fe120f8a4df268277773196a575615eb2019-11-03 15:57:31.564 [INF] SYNC: Processed 65 blocks in 10.01s (18488 transactions, height 595706/607469 (98.06%), 2019-08-13 19:56:16 -0700 PDT, ~5 MiB cache)2019-11-03 15:57:42.099 [INF] SYNC: Processed 44 blocks in 10.53s (21706 transactions, height 595750/607469 (98.07%), 2019-08-14 06:24:45 -0700 PDT, ~9 MiB cache)2019-11-03 15:57:52.154 [INF] SYNC: Processed 46 blocks in 10.05s (21874 transactions, height 595796/607469 (98.08%), 2019-08-14 15:15:53 -0700 PDT, ~11 MiB cache)2019-11-03 15:58:02.174 [INF] SYNC: Processed 78 blocks in 10.02s (23886 transactions, height 595874/607469 (98.09%), 2019-08-15 01:22:26 -0700 PDT, ~13 MiB cache)2019-11-03 15:58:03.839 [INF] CHAN: Flushing UTXO cache of ~14 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:58:12.178 [INF] SYNC: Processed 32 blocks in 10s (15948 transactions, height 595906/607469 (98.10%), 2019-08-15 08:18:57 -0700 PDT, ~2 MiB cache)2019-11-03 15:58:22.274 [INF] SYNC: Processed 59 blocks in 10.09s (24610 transactions, height 595965/607469 (98.11%), 2019-08-15 19:29:21 -0700 PDT, ~6 MiB cache)2019-11-03 15:58:32.465 [INF] SYNC: Processed 79 blocks in 10.19s (25216 transactions, height 596044/607469 (98.12%), 2019-08-16 06:26:54 -0700 PDT, ~8 MiB cache)2019-11-03 15:58:42.690 [INF] SYNC: Processed 56 blocks in 10.22s (26389 transactions, height 596100/607469 (98.13%), 2019-08-16 18:00:51 -0700 PDT, ~11 MiB cache)2019-11-03 15:58:50.731 [INF] CHAN: Flushing UTXO cache of ~14 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:58:55.615 [INF] SYNC: Processed 80 blocks in 12.92s (18253 transactions, height 596180/607469 (98.14%), 2019-08-17 05:44:03 -0700 PDT, ~0 MiB cache)2019-11-03 15:59:05.756 [INF] SYNC: Processed 80 blocks in 10.14s (18488 transactions, height 596260/607469 (98.15%), 2019-08-17 21:05:19 -0700 PDT, ~4 MiB cache)2019-11-03 15:59:16.341 [INF] SYNC: Processed 83 blocks in 10.58s (24843 transactions, height 596343/607469 (98.17%), 2019-08-18 09:43:33 -0700 PDT, ~8 MiB cache)2019-11-03 15:59:26.653 [INF] SYNC: Processed 66 blocks in 10.31s (20531 transactions, height 596409/607469 (98.18%), 2019-08-18 20:55:35 -0700 PDT, ~10 MiB cache)2019-11-03 15:59:34.825 [INF] CHAN: Flushing UTXO cache of ~13 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 15:59:39.297 [INF] SYNC: Processed 71 blocks in 12.64s (19486 transactions, height 596480/607469 (98.19%), 2019-08-19 07:09:30 -0700 PDT, ~0 MiB cache)2019-11-03 15:59:49.730 [INF] SYNC: Processed 65 blocks in 10.43s (22397 transactions, height 596545/607469 (98.20%), 2019-08-19 18:57:11 -0700 PDT, ~4 MiB cache)2019-11-03 15:59:59.886 [INF] SYNC: Processed 74 blocks in 10.15s (20397 transactions, height 596619/607469 (98.21%), 2019-08-20 05:13:16 -0700 PDT, ~9 MiB cache)2019/11/03 16:00:07 http: TLS handshake error from [::1]:53424: EOF2019/11/03 16:00:07 http: TLS handshake error from 127.0.0.1:53425: EOF2019-11-03 16:00:10.223 [INF] SYNC: Processed 31 blocks in 10.33s (18321 transactions, height 596650/607469 (98.22%), 2019-08-20 14:04:11 -0700 PDT, ~10 MiB cache)2019/11/03 16:00:13 http: TLS handshake error from [::1]:53466: EOF2019/11/03 16:00:13 http: TLS handshake error from 127.0.0.1:53467: EOF2019/11/03 16:00:15 http: TLS handshake error from [::1]:53483: EOF2019/11/03 16:00:15 http: TLS handshake error from 127.0.0.1:53484: EOF2019-11-03 16:00:20.374 [INF] SYNC: Processed 63 blocks in 10.15s (20561 transactions, height 596713/607469 (98.23%), 2019-08-21 00:01:33 -0700 PDT, ~12 MiB cache)2019-11-03 16:00:38.237 [INF] SYNC: Processed 56 blocks in 17.86s (16191 transactions, height 596769/607469 (98.24%), 2019-08-21 06:54:13 -0700 PDT, ~14 MiB cache)2019-11-03 16:00:40.597 [INF] CHAN: Flushing UTXO cache of ~15 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:00:48.327 [INF] SYNC: Processed 72 blocks in 10.08s (27955 transactions, height 596841/607469 (98.25%), 2019-08-21 20:24:17 -0700 PDT, ~2 MiB cache)2019-11-03 16:00:58.382 [INF] SYNC: Processed 93 blocks in 10.05s (31382 transactions, height 596934/607469 (98.27%), 2019-08-22 11:24:06 -0700 PDT, ~6 MiB cache)2019-11-03 16:01:08.496 [INF] SYNC: Processed 84 blocks in 10.11s (25008 transactions, height 597018/607469 (98.28%), 2019-08-23 02:08:19 -0700 PDT, ~9 MiB cache)2019-11-03 16:01:15.643 [INF] CHAN: Flushing UTXO cache of ~11 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:01:18.511 [INF] SYNC: Processed 70 blocks in 10.01s (22673 transactions, height 597088/607469 (98.29%), 2019-08-23 14:39:35 -0700 PDT, ~0 MiB cache)2019-11-03 16:01:28.795 [INF] SYNC: Processed 86 blocks in 10.28s (21806 transactions, height 597174/607469 (98.31%), 2019-08-24 04:28:06 -0700 PDT, ~3 MiB cache)2019-11-03 16:01:39.163 [INF] SYNC: Processed 57 blocks in 10.36s (16753 transactions, height 597231/607469 (98.31%), 2019-08-24 14:08:33 -0700 PDT, ~5 MiB cache)2019-11-03 16:01:49.372 [INF] SYNC: Processed 76 blocks in 10.2s (21143 transactions, height 597307/607469 (98.33%), 2019-08-25 02:41:05 -0700 PDT, ~7 MiB cache)2019-11-03 16:01:59.864 [INF] SYNC: Processed 68 blocks in 10.49s (19568 transactions, height 597375/607469 (98.34%), 2019-08-25 12:53:10 -0700 PDT, ~9 MiB cache)2019-11-03 16:02:03.748 [INF] CHAN: Flushing UTXO cache of ~11 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:02:10.864 [INF] SYNC: Processed 7 blocks in 10.99s (3047 transactions, height 597382/607469 (98.34%), 2019-08-25 14:13:11 -0700 PDT, ~0 MiB cache)2019-11-03 16:02:20.887 [INF] SYNC: Processed 68 blocks in 10.02s (20731 transactions, height 597450/607469 (98.35%), 2019-08-26 00:56:51 -0700 PDT, ~3 MiB cache)2019-11-03 16:02:30.902 [INF] SYNC: Processed 48 blocks in 10.01s (17293 transactions, height 597498/607469 (98.36%), 2019-08-26 09:40:21 -0700 PDT, ~5 MiB cache)2019-11-03 16:02:40.940 [INF] SYNC: Processed 69 blocks in 10.03s (21660 transactions, height 597567/607469 (98.37%), 2019-08-26 22:16:15 -0700 PDT, ~8 MiB cache)2019-11-03 16:02:51.018 [INF] SYNC: Processed 68 blocks in 10.07s (20010 transactions, height 597635/607469 (98.38%), 2019-08-27 09:23:27 -0700 PDT, ~13 MiB cache)2019-11-03 16:02:56.223 [INF] CHAN: Flushing UTXO cache of ~15 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:03:01.099 [INF] SYNC: Processed 56 blocks in 10.08s (14031 transactions, height 597691/607469 (98.39%), 2019-08-27 18:11:16 -0700 PDT, ~0 MiB cache)2019-11-03 16:03:11.125 [INF] SYNC: Processed 73 blocks in 10.02s (21365 transactions, height 597764/607469 (98.40%), 2019-08-28 06:25:34 -0700 PDT, ~3 MiB cache)2019-11-03 16:03:21.278 [INF] SYNC: Processed 62 blocks in 10.15s (23069 transactions, height 597826/607469 (98.41%), 2019-08-28 17:01:32 -0700 PDT, ~6 MiB cache)2019-11-03 16:03:31.618 [INF] SYNC: Processed 34 blocks in 10.34s (14071 transactions, height 597860/607469 (98.42%), 2019-08-28 23:57:20 -0700 PDT, ~8 MiB cache)2019-11-03 16:03:41.670 [INF] SYNC: Processed 67 blocks in 10.05s (25481 transactions, height 597927/607469 (98.43%), 2019-08-29 11:23:21 -0700 PDT, ~11 MiB cache)2019-11-03 16:03:47.772 [INF] CHAN: Flushing UTXO cache of ~13 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:03:51.734 [INF] SYNC: Processed 74 blocks in 10.06s (18292 transactions, height 598001/607469 (98.44%), 2019-08-29 21:32:30 -0700 PDT, ~1 MiB cache)2019-11-03 16:04:01.961 [INF] SYNC: Processed 60 blocks in 10.22s (19125 transactions, height 598061/607469 (98.45%), 2019-08-30 07:48:42 -0700 PDT, ~3 MiB cache)2019-11-03 16:04:12.036 [INF] SYNC: Processed 89 blocks in 10.07s (24239 transactions, height 598150/607469 (98.47%), 2019-08-30 22:37:27 -0700 PDT, ~6 MiB cache)2019-11-03 16:04:22.276 [INF] SYNC: Processed 68 blocks in 10.24s (18379 transactions, height 598218/607469 (98.48%), 2019-08-31 10:32:13 -0700 PDT, ~8 MiB cache)2019-11-03 16:04:29.347 [INF] CHAN: Flushing UTXO cache of ~11 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:04:32.675 [INF] SYNC: Processed 77 blocks in 10.39s (19711 transactions, height 598295/607469 (98.49%), 2019-08-31 21:59:08 -0700 PDT, ~0 MiB cache)2019-11-03 16:04:45.071 [INF] SYNC: Processed 19 blocks in 12.39s (30235 transactions, height 598314/607469 (98.49%), 2019-09-01 00:39:18 -0700 PDT, ~5 MiB cache)2019-11-03 16:04:57.739 [INF] SYNC: Processed 4 blocks in 12.66s (39810 transactions, height 598318/607469 (98.49%), 2019-09-01 02:31:38 -0700 PDT, ~9 MiB cache)2019-11-03 16:05:09.435 [INF] SYNC: Processed 4 blocks in 11.69s (36028 transactions, height 598322/607469 (98.49%), 2019-09-01 02:44:49 -0700 PDT, ~14 MiB cache)2019-11-03 16:05:27.609 [INF] SYNC: Processed 3 blocks in 18.17s (60976 transactions, height 598325/607469 (98.49%), 2019-09-01 04:21:53 -0700 PDT, ~21 MiB cache)2019-11-03 16:05:39.365 [INF] SYNC: Processed 2 blocks in 11.75s (30622 transactions, height 598327/607469 (98.50%), 2019-09-01 04:55:43 -0700 PDT, ~25 MiB cache)2019-11-03 16:05:49.928 [INF] SYNC: Processed 4 blocks in 10.56s (25699 transactions, height 598331/607469 (98.50%), 2019-09-01 05:17:57 -0700 PDT, ~28 MiB cache)2019-11-03 16:06:06.422 [INF] SYNC: Processed 7 blocks in 16.49s (49692 transactions, height 598338/607469 (98.50%), 2019-09-01 05:50:51 -0700 PDT, ~33 MiB cache)2019-11-03 16:06:18.399 [INF] SYNC: Processed 31 blocks in 11.97s (46061 transactions, height 598369/607469 (98.50%), 2019-09-01 11:36:07 -0700 PDT, ~38 MiB cache)2019-11-03 16:06:29.969 [INF] SYNC: Processed 5 blocks in 11.57s (45915 transactions, height 598374/607469 (98.50%), 2019-09-01 13:20:19 -0700 PDT, ~41 MiB cache)2019-11-03 16:06:46.051 [INF] SYNC: Processed 6 blocks in 16.08s (47130 transactions, height 598380/607469 (98.50%), 2019-09-01 14:49:22 -0700 PDT, ~46 MiB cache)2019-11-03 16:06:58.920 [INF] SYNC: Processed 3 blocks in 12.86s (52402 transactions, height 598383/607469 (98.50%), 2019-09-01 14:55:16 -0700 PDT, ~50 MiB cache)2019-11-03 16:07:09.332 [INF] SYNC: Processed 9 blocks in 10.41s (42766 transactions, height 598392/607469 (98.51%), 2019-09-01 15:03:22 -0700 PDT, ~54 MiB cache)2019-11-03 16:07:19.476 [INF] SYNC: Processed 9 blocks in 10.14s (42372 transactions, height 598401/607469 (98.51%), 2019-09-01 15:17:17 -0700 PDT, ~56 MiB cache)2019-11-03 16:07:37.461 [INF] SYNC: Processed 11 blocks in 17.98s (77713 transactions, height 598412/607469 (98.51%), 2019-09-01 17:35:46 -0700 PDT, ~61 MiB cache)2019-11-03 16:07:49.738 [INF] SYNC: Processed 4 blocks in 12.27s (59802 transactions, height 598416/607469 (98.51%), 2019-09-01 18:36:59 -0700 PDT, ~64 MiB cache)2019-11-03 16:07:59.820 [INF] SYNC: Processed 7 blocks in 10.08s (51184 transactions, height 598423/607469 (98.51%), 2019-09-01 20:29:41 -0700 PDT, ~67 MiB cache)2019-11-03 16:08:09.823 [INF] SYNC: Processed 82 blocks in 10s (23665 transactions, height 598505/607469 (98.52%), 2019-09-02 09:17:55 -0700 PDT, ~69 MiB cache)2019-11-03 16:08:20.461 [INF] SYNC: Processed 68 blocks in 10.63s (26202 transactions, height 598573/607469 (98.54%), 2019-09-02 20:44:04 -0700 PDT, ~72 MiB cache)2019-11-03 16:08:22.782 [INF] CHAN: Flushing UTXO cache of ~75 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:08:32.003 [INF] SYNC: Processed 7 blocks in 11.54s (4566 transactions, height 598580/607469 (98.54%), 2019-09-02 23:17:17 -0700 PDT, ~0 MiB cache)2019-11-03 16:08:42.021 [INF] SYNC: Processed 59 blocks in 10.01s (24040 transactions, height 598639/607469 (98.55%), 2019-09-03 09:26:29 -0700 PDT, ~5 MiB cache)2019-11-03 16:08:48.230 [INF] CHAN: Adding orphan block 000000000000000000c758eda7889021c83185e398dd89c578270d712ae6cda6 with parent 0000000000000000026f4729cab610884a36e0c5e2ed833a0755eb02f8d7276e2019-11-03 16:08:52.061 [INF] SYNC: Processed 62 blocks in 10.04s (18845 transactions, height 598701/607469 (98.56%), 2019-09-03 17:53:53 -0700 PDT, ~9 MiB cache)2019-11-03 16:09:02.366 [INF] SYNC: Processed 71 blocks in 10.3s (24277 transactions, height 598772/607469 (98.57%), 2019-09-04 06:18:36 -0700 PDT, ~12 MiB cache)2019-11-03 16:09:12.938 [INF] SYNC: Processed 62 blocks in 10.57s (26287 transactions, height 598834/607469 (98.58%), 2019-09-04 17:43:42 -0700 PDT, ~14 MiB cache)2019-11-03 16:09:18.297 [INF] CHAN: Flushing UTXO cache of ~17 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:09:23.080 [INF] SYNC: Processed 65 blocks in 10.14s (16723 transactions, height 598899/607469 (98.59%), 2019-09-05 02:52:03 -0700 PDT, ~1 MiB cache)2019-11-03 16:09:34.091 [INF] SYNC: Processed 29 blocks in 11.01s (18124 transactions, height 598928/607469 (98.59%), 2019-09-05 11:24:28 -0700 PDT, ~3 MiB cache)2019-11-03 16:09:44.107 [INF] SYNC: Processed 91 blocks in 10.01s (27067 transactions, height 599019/607469 (98.61%), 2019-09-05 22:48:17 -0700 PDT, ~6 MiB cache)2019-11-03 16:09:54.854 [INF] SYNC: Processed 61 blocks in 10.74s (27694 transactions, height 599080/607469 (98.62%), 2019-09-06 11:20:25 -0700 PDT, ~9 MiB cache)2019-11-03 16:10:04.967 [INF] SYNC: Processed 99 blocks in 10.11s (29378 transactions, height 599179/607469 (98.64%), 2019-09-07 03:09:39 -0700 PDT, ~12 MiB cache)2019-11-03 16:10:05.139 [INF] CHAN: Flushing UTXO cache of ~13 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:10:15.472 [INF] SYNC: Processed 57 blocks in 10.5s (23385 transactions, height 599236/607469 (98.64%), 2019-09-07 13:15:44 -0700 PDT, ~3 MiB cache)2019-11-03 16:10:25.507 [INF] SYNC: Processed 110 blocks in 10.03s (27598 transactions, height 599346/607469 (98.66%), 2019-09-08 04:14:35 -0700 PDT, ~6 MiB cache)2019-11-03 16:10:35.530 [INF] SYNC: Processed 74 blocks in 10.02s (25777 transactions, height 599420/607469 (98.67%), 2019-09-08 17:37:15 -0700 PDT, ~8 MiB cache)2019-11-03 16:10:43.346 [INF] CHAN: Flushing UTXO cache of ~11 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:10:45.748 [INF] SYNC: Processed 70 blocks in 10.21s (21793 transactions, height 599490/607469 (98.69%), 2019-09-09 04:17:46 -0700 PDT, ~0 MiB cache)2019-11-03 16:10:55.952 [INF] SYNC: Processed 49 blocks in 10.2s (24466 transactions, height 599539/607469 (98.69%), 2019-09-09 15:21:20 -0700 PDT, ~3 MiB cache)2019-11-03 16:11:06.026 [INF] SYNC: Processed 104 blocks in 10.07s (25834 transactions, height 599643/607469 (98.71%), 2019-09-10 05:38:41 -0700 PDT, ~9 MiB cache)2019-11-03 16:11:16.571 [INF] SYNC: Processed 48 blocks in 10.54s (21033 transactions, height 599691/607469 (98.72%), 2019-09-10 15:42:27 -0700 PDT, ~11 MiB cache)2019-11-03 16:11:26.806 [INF] SYNC: Processed 50 blocks in 10.23s (18660 transactions, height 599741/607469 (98.73%), 2019-09-11 01:01:17 -0700 PDT, ~13 MiB cache)2019-11-03 16:11:32.039 [INF] CHAN: Flushing UTXO cache of ~15 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:11:36.331 [INF] SYNC: Lost peer 185.138.8.46:8333 (outbound)2019-11-03 16:11:36.675 [WRN] SYNC: Received done peer message for unknown peer 139.59.73.22:8333 (outbound)2019-11-03 16:11:37.032 [INF] SYNC: Processed 52 blocks in 10.22s (13833 transactions, height 599793/607469 (98.74%), 2019-09-11 07:17:14 -0700 PDT, ~1 MiB cache)2019-11-03 16:11:41.378 [INF] SYNC: New valid peer 51.77.251.18:8333 (outbound) (/Bitcoin ABC:0.19.0(EB32.0)/)2019-11-03 16:11:47.251 [INF] SYNC: Processed 54 blocks in 10.21s (21185 transactions, height 599847/607469 (98.75%), 2019-09-11 17:45:39 -0700 PDT, ~3 MiB cache)2019-11-03 16:11:57.768 [INF] SYNC: Processed 61 blocks in 10.51s (18686 transactions, height 599908/607469 (98.76%), 2019-09-12 04:44:06 -0700 PDT, ~5 MiB cache)2019-11-03 16:12:07.915 [INF] SYNC: Processed 72 blocks in 10.14s (22839 transactions, height 599980/607469 (98.77%), 2019-09-12 15:02:00 -0700 PDT, ~8 MiB cache)2019-11-03 16:12:17.942 [INF] SYNC: Processed 55 blocks in 10.02s (18110 transactions, height 600035/607469 (98.78%), 2019-09-13 01:00:22 -0700 PDT, ~10 MiB cache)2019-11-03 16:12:24.131 [INF] CHAN: Flushing UTXO cache of ~12 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:12:28.000 [INF] SYNC: Processed 70 blocks in 10.05s (20385 transactions, height 600105/607469 (98.79%), 2019-09-13 11:29:33 -0700 PDT, ~0 MiB cache)2019-11-03 16:12:38.342 [INF] SYNC: Processed 76 blocks in 10.34s (20925 transactions, height 600181/607469 (98.80%), 2019-09-13 23:56:08 -0700 PDT, ~3 MiB cache)2019-11-03 16:12:48.351 [INF] SYNC: Processed 57 blocks in 10s (20968 transactions, height 600238/607469 (98.81%), 2019-09-14 10:30:35 -0700 PDT, ~6 MiB cache)2019-11-03 16:12:58.848 [INF] SYNC: Processed 80 blocks in 10.49s (22494 transactions, height 600318/607469 (98.82%), 2019-09-14 23:11:40 -0700 PDT, ~8 MiB cache)2019-11-03 16:13:07.325 [INF] CHAN: Flushing UTXO cache of ~11 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:13:08.860 [INF] SYNC: Processed 70 blocks in 10.01s (20585 transactions, height 600388/607469 (98.83%), 2019-09-15 10:58:50 -0700 PDT, ~0 MiB cache)2019-11-03 16:13:19.012 [INF] SYNC: Processed 78 blocks in 10.15s (21688 transactions, height 600466/607469 (98.85%), 2019-09-15 23:45:33 -0700 PDT, ~3 MiB cache)2019-11-03 16:13:29.127 [INF] SYNC: Processed 63 blocks in 10.11s (21370 transactions, height 600529/607469 (98.86%), 2019-09-16 11:06:39 -0700 PDT, ~5 MiB cache)2019-11-03 16:13:39.892 [INF] SYNC: Processed 85 blocks in 10.76s (22084 transactions, height 600614/607469 (98.87%), 2019-09-16 23:34:29 -0700 PDT, ~11 MiB cache)2019-11-03 16:13:50.496 [INF] SYNC: Processed 54 blocks in 10.6s (20180 transactions, height 600668/607469 (98.88%), 2019-09-17 08:55:21 -0700 PDT, ~13 MiB cache)2019-11-03 16:13:52.478 [INF] CHAN: Flushing UTXO cache of ~15 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:14:00.654 [INF] SYNC: Processed 35 blocks in 10.15s (15683 transactions, height 600703/607469 (98.89%), 2019-09-17 15:22:56 -0700 PDT, ~1 MiB cache)2019-11-03 16:14:11.311 [INF] SYNC: Processed 80 blocks in 10.65s (24859 transactions, height 600783/607469 (98.90%), 2019-09-18 03:42:14 -0700 PDT, ~4 MiB cache)2019-11-03 16:14:21.339 [INF] SYNC: Processed 51 blocks in 10.02s (19230 transactions, height 600834/607469 (98.91%), 2019-09-18 11:30:47 -0700 PDT, ~7 MiB cache)2019-11-03 16:14:31.460 [INF] SYNC: Processed 60 blocks in 10.12s (26725 transactions, height 600894/607469 (98.92%), 2019-09-18 23:30:42 -0700 PDT, ~9 MiB cache)2019-11-03 16:14:41.651 [INF] SYNC: Processed 72 blocks in 10.19s (22838 transactions, height 600966/607469 (98.93%), 2019-09-19 10:26:39 -0700 PDT, ~12 MiB cache)2019-11-03 16:14:42.718 [INF] CHAN: Flushing UTXO cache of ~13 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:14:52.429 [INF] SYNC: Processed 61 blocks in 10.77s (21617 transactions, height 601027/607469 (98.94%), 2019-09-19 20:34:41 -0700 PDT, ~2 MiB cache)2019-11-03 16:15:02.447 [INF] SYNC: Processed 59 blocks in 10.01s (20555 transactions, height 601086/607469 (98.95%), 2019-09-20 07:07:08 -0700 PDT, ~5 MiB cache)2019-11-03 16:15:12.453 [INF] SYNC: Processed 68 blocks in 10s (20532 transactions, height 601154/607469 (98.96%), 2019-09-20 17:01:45 -0700 PDT, ~8 MiB cache)2019-11-03 16:15:22.670 [INF] SYNC: Processed 50 blocks in 10.21s (20310 transactions, height 601204/607469 (98.97%), 2019-09-21 04:19:33 -0700 PDT, ~11 MiB cache)2019-11-03 16:15:32.377 [INF] CHAN: Flushing UTXO cache of ~14 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:15:34.607 [INF] SYNC: Processed 76 blocks in 11.93s (21019 transactions, height 601280/607469 (98.98%), 2019-09-21 14:30:03 -0700 PDT, ~0 MiB cache)2019-11-03 16:15:44.985 [INF] SYNC: Processed 58 blocks in 10.37s (22880 transactions, height 601338/607469 (98.99%), 2019-09-22 02:48:04 -0700 PDT, ~3 MiB cache)2019-11-03 16:15:55.051 [INF] SYNC: Processed 74 blocks in 10.06s (20312 transactions, height 601412/607469 (99.00%), 2019-09-22 13:25:36 -0700 PDT, ~5 MiB cache)2019-11-03 16:16:05.065 [INF] SYNC: Processed 121 blocks in 10.01s (22221 transactions, height 601533/607469 (99.02%), 2019-09-23 09:25:27 -0700 PDT, ~9 MiB cache)2019-11-03 16:16:09.788 [INF] CHAN: Flushing UTXO cache of ~11 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:16:15.375 [INF] SYNC: Processed 88 blocks in 10.3s (22356 transactions, height 601621/607469 (99.04%), 2019-09-23 23:29:36 -0700 PDT, ~5 MiB cache)2019-11-03 16:16:25.445 [INF] SYNC: Processed 60 blocks in 10.07s (21363 transactions, height 601681/607469 (99.05%), 2019-09-24 10:28:17 -0700 PDT, ~7 MiB cache)2019-11-03 16:16:35.517 [INF] SYNC: Processed 27 blocks in 10.07s (20192 transactions, height 601708/607469 (99.05%), 2019-09-24 17:14:46 -0700 PDT, ~10 MiB cache)2019-11-03 16:16:45.838 [INF] SYNC: Processed 63 blocks in 10.32s (21262 transactions, height 601771/607469 (99.06%), 2019-09-25 02:26:32 -0700 PDT, ~12 MiB cache)2019-11-03 16:16:55.938 [INF] SYNC: Processed 55 blocks in 10.1s (19975 transactions, height 601826/607469 (99.07%), 2019-09-25 10:26:56 -0700 PDT, ~14 MiB cache)2019-11-03 16:17:04.709 [INF] CHAN: Flushing UTXO cache of ~17 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:17:07.529 [INF] SYNC: Processed 54 blocks in 11.59s (21482 transactions, height 601880/607469 (99.08%), 2019-09-25 21:11:39 -0700 PDT, ~0 MiB cache)2019-11-03 16:17:17.897 [INF] SYNC: Processed 61 blocks in 10.36s (27220 transactions, height 601941/607469 (99.09%), 2019-09-26 09:26:31 -0700 PDT, ~3 MiB cache)2019-11-03 16:17:27.902 [INF] SYNC: Processed 89 blocks in 10s (26112 transactions, height 602030/607469 (99.10%), 2019-09-26 20:34:35 -0700 PDT, ~6 MiB cache)2019-11-03 16:17:37.902 [INF] SYNC: Processed 54 blocks in 10s (22172 transactions, height 602084/607469 (99.11%), 2019-09-27 07:25:43 -0700 PDT, ~9 MiB cache)2019-11-03 16:17:47.083 [INF] CHAN: Flushing UTXO cache of ~13 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:17:49.103 [INF] SYNC: Processed 96 blocks in 11.2s (25432 transactions, height 602180/607469 (99.13%), 2019-09-27 21:22:44 -0700 PDT, ~0 MiB cache)2019-11-03 16:17:59.137 [INF] SYNC: Processed 64 blocks in 10.03s (22605 transactions, height 602244/607469 (99.14%), 2019-09-28 11:28:38 -0700 PDT, ~3 MiB cache)2019-11-03 16:18:09.774 [INF] SYNC: Processed 128 blocks in 10.63s (28561 transactions, height 602372/607469 (99.16%), 2019-09-29 06:13:12 -0700 PDT, ~6 MiB cache)2019-11-03 16:18:20.121 [INF] SYNC: Processed 87 blocks in 10.34s (28156 transactions, height 602459/607469 (99.18%), 2019-09-29 21:37:54 -0700 PDT, ~10 MiB cache)2019-11-03 16:18:21.065 [INF] CHAN: Flushing UTXO cache of ~11 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:18:30.161 [INF] SYNC: Processed 68 blocks in 10.04s (22626 transactions, height 602527/607469 (99.19%), 2019-09-30 08:24:04 -0700 PDT, ~2 MiB cache)2019-11-03 16:18:40.204 [INF] SYNC: Processed 147 blocks in 10.04s (17724 transactions, height 602674/607469 (99.21%), 2019-10-01 06:16:43 -0700 PDT, ~9 MiB cache)2019-11-03 16:18:50.356 [INF] SYNC: Processed 83 blocks in 10.15s (13339 transactions, height 602757/607469 (99.22%), 2019-10-01 23:05:19 -0700 PDT, ~12 MiB cache)2019-11-03 16:18:53.578 [INF] CHAN: Flushing UTXO cache of ~14 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:19:00.429 [INF] SYNC: Processed 29 blocks in 10.07s (2280 transactions, height 602786/607469 (99.23%), 2019-10-02 01:39:45 -0700 PDT, ~0 MiB cache)2019-11-03 16:19:10.679 [INF] SYNC: Processed 164 blocks in 10.25s (19700 transactions, height 602950/607469 (99.26%), 2019-10-03 05:29:13 -0700 PDT, ~5 MiB cache)2019-11-03 16:19:20.806 [INF] SYNC: Processed 67 blocks in 10.12s (22151 transactions, height 603017/607469 (99.27%), 2019-10-03 20:00:35 -0700 PDT, ~9 MiB cache)2019-11-03 16:19:24.796 [INF] CHAN: Flushing UTXO cache of ~12 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:19:31.043 [INF] SYNC: Processed 91 blocks in 10.23s (21434 transactions, height 603108/607469 (99.28%), 2019-10-04 07:31:38 -0700 PDT, ~2 MiB cache)2019-11-03 16:19:41.339 [INF] SYNC: Processed 73 blocks in 10.29s (25629 transactions, height 603181/607469 (99.29%), 2019-10-04 21:56:06 -0700 PDT, ~5 MiB cache)2019-11-03 16:19:51.721 [INF] SYNC: Processed 106 blocks in 10.38s (29666 transactions, height 603287/607469 (99.31%), 2019-10-05 15:52:35 -0700 PDT, ~8 MiB cache)2019-11-03 16:19:58.854 [INF] CHAN: Flushing UTXO cache of ~12 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:20:01.939 [INF] SYNC: Processed 95 blocks in 10.21s (23056 transactions, height 603382/607469 (99.33%), 2019-10-06 05:31:33 -0700 PDT, ~0 MiB cache)2019-11-03 16:20:12.102 [INF] SYNC: Processed 75 blocks in 10.16s (28523 transactions, height 603457/607469 (99.34%), 2019-10-06 19:37:25 -0700 PDT, ~4 MiB cache)2019-11-03 16:20:22.114 [INF] SYNC: Processed 103 blocks in 10.01s (29995 transactions, height 603560/607469 (99.36%), 2019-10-07 09:47:23 -0700 PDT, ~8 MiB cache)2019-11-03 16:20:32.262 [INF] SYNC: Processed 52 blocks in 10.14s (24961 transactions, height 603612/607469 (99.37%), 2019-10-07 21:56:43 -0700 PDT, ~14 MiB cache)2019-11-03 16:20:37.831 [INF] CHAN: Flushing UTXO cache of ~17 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:20:43.088 [INF] SYNC: Processed 69 blocks in 10.82s (16384 transactions, height 603681/607469 (99.38%), 2019-10-08 06:37:54 -0700 PDT, ~0 MiB cache)2019-11-03 16:20:58.017 [INF] SYNC: Processed 38 blocks in 14.92s (12062 transactions, height 603719/607469 (99.38%), 2019-10-08 12:59:38 -0700 PDT, ~3 MiB cache)2019-11-03 16:21:08.799 [INF] SYNC: Processed 10 blocks in 10.78s (3181 transactions, height 603729/607469 (99.38%), 2019-10-08 14:31:35 -0700 PDT, ~5 MiB cache)2019-11-03 16:21:18.946 [INF] SYNC: Processed 35 blocks in 10.14s (14400 transactions, height 603764/607469 (99.39%), 2019-10-08 23:21:55 -0700 PDT, ~8 MiB cache)2019-11-03 16:21:29.190 [INF] SYNC: Processed 94 blocks in 10.24s (28901 transactions, height 603858/607469 (99.41%), 2019-10-09 13:04:12 -0700 PDT, ~11 MiB cache)2019-11-03 16:21:39.922 [INF] SYNC: Processed 69 blocks in 10.73s (28073 transactions, height 603927/607469 (99.42%), 2019-10-10 04:30:07 -0700 PDT, ~14 MiB cache)2019-11-03 16:21:43.856 [INF] CHAN: Flushing UTXO cache of ~16 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:21:50.025 [INF] SYNC: Processed 72 blocks in 10.1s (14634 transactions, height 603999/607469 (99.43%), 2019-10-10 12:49:11 -0700 PDT, ~1 MiB cache)2019-11-03 16:22:00.716 [INF] SYNC: Processed 111 blocks in 10.69s (27320 transactions, height 604110/607469 (99.45%), 2019-10-11 09:43:09 -0700 PDT, ~6 MiB cache)2019-11-03 16:22:10.734 [INF] SYNC: Processed 90 blocks in 10.01s (23550 transactions, height 604200/607469 (99.46%), 2019-10-12 01:58:38 -0700 PDT, ~9 MiB cache)2019-11-03 16:22:16.811 [INF] CHAN: Flushing UTXO cache of ~12 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:22:20.832 [INF] SYNC: Processed 97 blocks in 10.09s (21278 transactions, height 604297/607469 (99.48%), 2019-10-12 14:54:46 -0700 PDT, ~1 MiB cache)2019-11-03 16:22:30.856 [INF] SYNC: Processed 89 blocks in 10.02s (25934 transactions, height 604386/607469 (99.49%), 2019-10-13 07:01:12 -0700 PDT, ~5 MiB cache)2019-11-03 16:22:40.868 [INF] SYNC: Processed 96 blocks in 10.01s (24404 transactions, height 604482/607469 (99.51%), 2019-10-13 20:14:43 -0700 PDT, ~7 MiB cache)2019-11-03 16:22:51.338 [INF] SYNC: Processed 53 blocks in 10.47s (22043 transactions, height 604535/607469 (99.52%), 2019-10-14 07:40:30 -0700 PDT, ~10 MiB cache)2019-11-03 16:22:58.856 [INF] CHAN: Flushing UTXO cache of ~13 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:23:03.135 [INF] SYNC: Processed 45 blocks in 11.79s (15626 transactions, height 604580/607469 (99.52%), 2019-10-14 15:19:52 -0700 PDT, ~0 MiB cache)2019-11-03 16:23:13.568 [INF] SYNC: Processed 79 blocks in 10.43s (22924 transactions, height 604659/607469 (99.54%), 2019-10-15 03:35:15 -0700 PDT, ~7 MiB cache)2019-11-03 16:23:17.648 [WRN] PEER: Received reject message from peer 35.199.112.215:8333 (outbound), code: REJECT_INVALID, reason: mandatory-script-verify-flag-failed (Opcode missing or not understood)2019-11-03 16:23:17.689 [INF] SYNC: Lost peer 35.199.112.215:8333 (outbound)2019-11-03 16:23:23.636 [INF] SYNC: Processed 35 blocks in 10.06s (18071 transactions, height 604694/607469 (99.54%), 2019-10-15 11:09:26 -0700 PDT, ~9 MiB cache)2019-11-03 16:23:28.346 [INF] SYNC: New valid peer 54.36.62.47:8333 (outbound) (/Bitcoin ABC:0.19.5(EB32.0)/)2019-11-03 16:23:34.148 [INF] SYNC: Processed 98 blocks in 10.51s (23052 transactions, height 604792/607469 (99.56%), 2019-10-16 00:58:06 -0700 PDT, ~12 MiB cache)2019-11-03 16:23:44.175 [INF] SYNC: Processed 49 blocks in 10.02s (22614 transactions, height 604841/607469 (99.57%), 2019-10-16 11:55:56 -0700 PDT, ~14 MiB cache)2019-11-03 16:23:49.712 [INF] CHAN: Flushing UTXO cache of ~16 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:23:54.239 [INF] SYNC: Processed 39 blocks in 10.06s (8006 transactions, height 604880/607469 (99.57%), 2019-10-16 16:02:37 -0700 PDT, ~0 MiB cache)2019-11-03 16:24:04.257 [INF] SYNC: Processed 61 blocks in 10.01s (17352 transactions, height 604941/607469 (99.58%), 2019-10-17 00:54:35 -0700 PDT, ~3 MiB cache)2019-11-03 16:24:14.385 [INF] SYNC: Processed 44 blocks in 10.12s (19254 transactions, height 604985/607469 (99.59%), 2019-10-17 09:58:02 -0700 PDT, ~5 MiB cache)2019-11-03 16:24:24.388 [INF] SYNC: Processed 85 blocks in 10s (21445 transactions, height 605070/607469 (99.61%), 2019-10-17 22:22:19 -0700 PDT, ~8 MiB cache)2019-11-03 16:24:34.499 [INF] SYNC: Processed 66 blocks in 10.11s (24999 transactions, height 605136/607469 (99.62%), 2019-10-18 10:58:35 -0700 PDT, ~12 MiB cache)2019-11-03 16:24:39.702 [INF] CHAN: Flushing UTXO cache of ~14 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:24:46.113 [INF] SYNC: Processed 45 blocks in 11.61s (14929 transactions, height 605181/607469 (99.62%), 2019-10-18 19:16:10 -0700 PDT, ~0 MiB cache)2019-11-03 16:24:56.633 [INF] SYNC: Processed 84 blocks in 10.51s (22984 transactions, height 605265/607469 (99.64%), 2019-10-19 09:03:43 -0700 PDT, ~4 MiB cache)2019-11-03 16:25:06.748 [INF] SYNC: Processed 64 blocks in 10.11s (19525 transactions, height 605329/607469 (99.65%), 2019-10-19 20:18:39 -0700 PDT, ~6 MiB cache)2019-11-03 16:25:16.831 [INF] SYNC: Processed 99 blocks in 10.08s (22401 transactions, height 605428/607469 (99.66%), 2019-10-20 11:22:35 -0700 PDT, ~9 MiB cache)2019-11-03 16:25:24.223 [INF] CHAN: Flushing UTXO cache of ~12 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:25:27.037 [INF] SYNC: Processed 52 blocks in 10.2s (19052 transactions, height 605480/607469 (99.67%), 2019-10-20 21:47:51 -0700 PDT, ~0 MiB cache)2019-11-03 16:25:37.053 [INF] SYNC: Processed 86 blocks in 10.01s (20640 transactions, height 605566/607469 (99.69%), 2019-10-21 09:24:18 -0700 PDT, ~3 MiB cache)2019-11-03 16:25:47.287 [INF] SYNC: Processed 58 blocks in 10.23s (18772 transactions, height 605624/607469 (99.70%), 2019-10-21 20:54:38 -0700 PDT, ~8 MiB cache)2019-11-03 16:25:57.363 [INF] SYNC: Processed 67 blocks in 10.07s (16279 transactions, height 605691/607469 (99.71%), 2019-10-22 07:19:39 -0700 PDT, ~11 MiB cache)2019-11-03 16:26:07.460 [INF] SYNC: Processed 81 blocks in 10.09s (23895 transactions, height 605772/607469 (99.72%), 2019-10-22 21:28:35 -0700 PDT, ~14 MiB cache)2019-11-03 16:26:10.656 [INF] CHAN: Flushing UTXO cache of ~16 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:26:17.475 [INF] SYNC: Processed 55 blocks in 10.01s (15347 transactions, height 605827/607469 (99.73%), 2019-10-23 05:43:04 -0700 PDT, ~1 MiB cache)2019-11-03 16:26:27.677 [INF] SYNC: Processed 78 blocks in 10.2s (26625 transactions, height 605905/607469 (99.74%), 2019-10-23 19:45:30 -0700 PDT, ~4 MiB cache)2019-11-03 16:26:37.686 [INF] SYNC: Processed 99 blocks in 10s (26025 transactions, height 606004/607469 (99.76%), 2019-10-24 10:11:28 -0700 PDT, ~7 MiB cache)2019-11-03 16:26:47.899 [INF] SYNC: Processed 53 blocks in 10.21s (16523 transactions, height 606057/607469 (99.77%), 2019-10-24 20:45:26 -0700 PDT, ~10 MiB cache)2019-11-03 16:26:51.384 [INF] CHAN: Flushing UTXO cache of ~12 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:26:58.439 [INF] SYNC: Processed 60 blocks in 10.54s (13634 transactions, height 606117/607469 (99.78%), 2019-10-25 05:02:36 -0700 PDT, ~1 MiB cache)2019-11-03 16:27:09.046 [INF] SYNC: Processed 58 blocks in 10.6s (27971 transactions, height 606175/607469 (99.79%), 2019-10-25 15:14:18 -0700 PDT, ~5 MiB cache)2019-11-03 16:27:19.189 [INF] SYNC: Processed 39 blocks in 10.14s (23399 transactions, height 606214/607469 (99.79%), 2019-10-25 23:05:36 -0700 PDT, ~7 MiB cache)2019-11-03 16:27:29.317 [INF] SYNC: Processed 70 blocks in 10.12s (33042 transactions, height 606284/607469 (99.80%), 2019-10-26 12:23:37 -0700 PDT, ~11 MiB cache)2019-11-03 16:27:39.514 [INF] SYNC: Processed 95 blocks in 10.19s (31455 transactions, height 606379/607469 (99.82%), 2019-10-27 04:42:05 -0700 PDT, ~14 MiB cache)2019-11-03 16:27:39.964 [INF] CHAN: Flushing UTXO cache of ~15 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:27:54.863 [INF] SYNC: Processed 1 block in 15.34s (1604 transactions, height 606380/607469 (99.82%), 2019-10-27 05:19:46 -0700 PDT, ~0 MiB cache)2019-11-03 16:28:04.886 [INF] SYNC: Processed 110 blocks in 10.02s (32079 transactions, height 606490/607469 (99.84%), 2019-10-27 18:05:53 -0700 PDT, ~3 MiB cache)2019-11-03 16:28:15.142 [INF] SYNC: Processed 38 blocks in 10.25s (25769 transactions, height 606528/607469 (99.85%), 2019-10-28 06:06:36 -0700 PDT, ~6 MiB cache)2019-11-03 16:28:25.263 [INF] SYNC: Processed 48 blocks in 10.12s (15458 transactions, height 606576/607469 (99.85%), 2019-10-28 13:36:06 -0700 PDT, ~8 MiB cache)2019-11-03 16:28:35.798 [INF] SYNC: Processed 79 blocks in 10.53s (17515 transactions, height 606655/607469 (99.87%), 2019-10-28 22:19:51 -0700 PDT, ~13 MiB cache)2019-11-03 16:28:44.517 [INF] CHAN: Flushing UTXO cache of ~16 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:28:46.619 [INF] SYNC: Processed 26 blocks in 10.82s (15291 transactions, height 606681/607469 (99.87%), 2019-10-29 05:36:12 -0700 PDT, ~0 MiB cache)2019-11-03 16:28:56.793 [INF] SYNC: Processed 88 blocks in 10.17s (25582 transactions, height 606769/607469 (99.88%), 2019-10-29 17:47:05 -0700 PDT, ~3 MiB cache)2019-11-03 16:29:07.182 [INF] SYNC: Processed 57 blocks in 10.38s (24208 transactions, height 606826/607469 (99.89%), 2019-10-30 05:31:55 -0700 PDT, ~6 MiB cache)2019-11-03 16:29:17.268 [INF] SYNC: Processed 91 blocks in 10.08s (24308 transactions, height 606917/607469 (99.91%), 2019-10-30 17:21:51 -0700 PDT, ~9 MiB cache)2019-11-03 16:29:27.329 [INF] SYNC: Processed 56 blocks in 10.06s (27937 transactions, height 606973/607469 (99.92%), 2019-10-31 06:43:23 -0700 PDT, ~11 MiB cache)2019-11-03 16:29:28.433 [INF] CHAN: Flushing UTXO cache of ~13 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:29:37.603 [INF] SYNC: Processed 81 blocks in 10.27s (21590 transactions, height 607054/607469 (99.93%), 2019-10-31 18:17:48 -0700 PDT, ~2 MiB cache)2019-11-03 16:29:47.658 [INF] SYNC: Processed 70 blocks in 10.05s (22265 transactions, height 607124/607469 (99.94%), 2019-11-01 07:14:09 -0700 PDT, ~5 MiB cache)2019-11-03 16:29:57.662 [INF] SYNC: Processed 87 blocks in 10s (22678 transactions, height 607211/607469 (99.96%), 2019-11-01 19:49:48 -0700 PDT, ~8 MiB cache)2019-11-03 16:30:05.785 [INF] CHAN: Flushing UTXO cache of ~11 MiB to disk. For large sizes, this can take up to several minutes...2019-11-03 16:30:07.842 [INF] SYNC: Processed 83 blocks in 10.17s (22449 transactions, height 607294/607469 (99.97%), 2019-11-02 10:14:35 -0700 PDT, ~0 MiB cache)2019-11-03 16:30:19.222 [INF] SYNC: Processed 33 blocks in 11.37s (8921 transactions, height 607327/607469 (99.98%), 2019-11-02 16:06:17 -0700 PDT, ~3 MiB cache)2019-11-03 16:30:29.508 [WRN] CHAN: Unknown block versions are being mined, so new rules might be in effect.  Are you running the latest version of the software?2019-11-03 16:30:29.509 [INF] SYNC: Processed 9 blocks in 10.28s (2388 transactions, height 607336/607469 (99.98%), 2019-11-02 17:41:47 -0700 PDT, ~5 MiB cache)2019-11-03 16:30:39.698 [INF] SYNC: Processed 94 blocks in 10.18s (26671 transactions, height 607430/607469 (99.99%), 2019-11-03 09:21:14 -0800 PST, ~9 MiB cache)2019-11-03 16:37:04.877 [INF] SYNC: Processed 40 blocks in 6m25.17s (8515 transactions, height 607477 (100.00%), 2019-11-03 16:37:05 -0800 PST, ~10 MiB cache)
2019-11-03 16:54:31.921 [INF] SYNC: Processed 1 block in 7m42.43s (477 transactions, height 607478 (100.00%), 2019-11-03 16:54:23 -0800 PST, ~0 MiB cache)

--

--