question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

BTC node state changing back and forth betweenNBXplorerSynching and notstarted

See original GitHub issue

Hi I am unavailable to get BTC node to a ready state. It just switch between notstarted and synching

I used docker-compose.yml to run everything on aws

bitcoind:
   restart: unless-stopped
   container_name: btcpayserver_bitcoind
   image: btcpayserver/bitcoin:0.19.0.1
   environment:
     BITCOIN_NETWORK: ${NBITCOIN_NETWORK:-mainnet}
     BITCOIN_WALLETDIR: "/walletdata"
     BITCOIN_EXTRA_ARGS: |
       rpcport=43782
       rpcbind=0.0.0.0:43782
       port=39388
       rpcbind=0.0.0.0
       whitelist=0.0.0.0/0

       prune=550
   expose:
     - "43782"
     - "39388"
   volumes:
     - bitcoin_datadir:/data
     - bitcoin_wallet_datadir:/walletdata
nbxplorer:
    restart: unless-stopped
    image: nicolasdorier/nbxplorer:2.1.14
    command: --noauth
    expose:
      - "32838"
    ports:
      - "32838:32838"
    environment:
      NBXPLORER_NETWORK: ${NBITCOIN_NETWORK:-mainnet}
      NBXPLORER_BIND: 0.0.0.0:32838
      NBXPLORER_SIGNALFILESDIR: /datadir
      NBXPLORER_CHAINS: "btc,ltc"
      NBXPLORER_BTCRPCURL: http://bitcoind:43782/
      NBXPLORER_BTCNODEENDPOINT: bitcoind:39388
      NBXPLORER_LTCRPCURL: http://litecoind:43782/
      NBXPLORER_LTCNODEENDPOINT: litecoind:39388
      NBXPLORER_RMQHOST: rabbitmq
      NBXPLORER_RMQVIRTUAL: /
      NBXPLORER_RMQUSER: **
      NBXPLORER_RMQPASS: **
      NBXPLORER_RMQTRANEX: NewTransaction
      NBXPLORER_RMQBLOCKEX: NewBlock
    volumes:
      - nbxplorer_datadir:/datadir
      - bitcoin_datadir:/root/.bitcoin
      - litecoin_datadir:/root/.litecoin

Below are the logs I get: info: Configuration: BTC: RPC connection successful info: Configuration: BTC: Full node version detected: 190001 info: Configuration: BTC: Loading chain from cache… info: Configuration: BTC: Height: 661061 info: Configuration: BTC: Trying to connect via the P2P protocol to trusted node (bitcoind:39388)… info: Explorer: BTC: TCP Connection succeed, handshaking… info: Explorer: BTC: Handshaked info: Configuration: BTC: Loading chain from node info: Explorer: BTC: Loading chain… info: Explorer: BTC: Chain loaded info: Explorer: BTC: NBXplorer is correctly whitelisted by the node info: Configuration: BTC: Height: 661061 info: Explorer: BTC: Starting scan at block 659576 info: Events: BTC: Node state changed: NotStarted => NBXplorerSynching info: Explorer: BTC: Block download seems to hang, let’s reconnect to this node info: Events: BTC: Node state changed: NBXplorerSynching => NotStarted info: Configuration: BTC: Testing RPC connection to http://bitcoind:43782/ info: Explorer: BTC: Closed connection with node info: Configuration: BTC: RPC connection successful info: Configuration: BTC: Full node version detected: 190001 info: Configuration: BTC: Loading chain from cache… info: Configuration: BTC: Height: 661061 info: Configuration: BTC: Trying to connect via the P2P protocol to trusted node (bitcoind:39388)… info: Explorer: BTC: TCP Connection succeed, handshaking… info: Explorer: BTC: Handshaked info: Configuration: BTC: Loading chain from node info: Explorer: BTC: Loading chain… info: Explorer: BTC: Chain loaded info: Explorer: BTC: NBXplorer is correctly whitelisted by the node info: Configuration: BTC: Height: 661061 info: Explorer: BTC: Starting scan at block 659576 info: Events: BTC: Node state changed: NotStarted => NBXplorerSynching

Previously it will go from NBXplorerSynching => Ready, which is the expected behaviour

If anyone has any input its greatly appreciated!

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:16 (8 by maintainers)

github_iconTop GitHub Comments

1reaction
Kennnyoungcommented, Dec 16, 2020

I have fixed this issue so I am closing it. It seems like after a version update and reboot server couple times and add one env variable start height to newsest block do the charm.

Thank you for all the inputs. Really appreciated!

0reactions
Kennnyoungcommented, Dec 16, 2020

This is the log from bitcoind. I just restarted the container

Attaching to btcpayserver_bitcoind
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Ignoring unknown configuration value mainnet
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Bitcoin Core version v0.20.1 (release build)
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Assuming ancestors of block 0000000000000000000f2adce67e49b0b6bdeb9de8b7c3d7e93b21e7fc1e819d have valid signatures.
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Setting nMinimumChainWork=00000000000000000000000000000000000000000e1ab5ec9348e9f4b8eb8154
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Prune configured to target 550 MiB on disk for block and undo files.
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Using the 'sse4(1way),sse41(4way),avx2(8way)' SHA256 implementation
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Using RdRand as an additional entropy source
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Default data directory /home/bitcoin/.bitcoin
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Using data directory /home/bitcoin/.bitcoin
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Config file: /home/bitcoin/.bitcoin/bitcoin.conf
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Config file arg: [main] port="39388"
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Config file arg: [main] printtoconsole="1"
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Config file arg: [main] prune="550"
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Config file arg: [main] rpcallowip="::/0"
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Config file arg: [main] rpcauth=****
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Config file arg: [main] rpcbind=****
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Config file arg: [main] rpcport="43782"
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Config file arg: [main] walletdir="/walletdata/mainnet"
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Config file arg: [main] whitelist="0.0.0.0/0"
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Using at most 125 automatic connections (1048576 file descriptors available)
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Using 16 MiB out of 32/2 requested for signature cache, able to store 524288 elements
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Using 16 MiB out of 32/2 requested for script execution cache, able to store 524288 elements
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Script verification uses 1 additional threads
btcpayserver_bitcoind | 2020-12-16T05:19:44Z scheduler thread start
btcpayserver_bitcoind | 2020-12-16T05:19:44Z WARNING: the RPC server is not safe to expose to untrusted networks such as the public internet
btcpayserver_bitcoind | 2020-12-16T05:19:44Z HTTP: creating work queue of depth 16
btcpayserver_bitcoind | 2020-12-16T05:19:44Z No rpcpassword set - using random cookie authentication.
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Generated RPC authentication cookie /home/bitcoin/.bitcoin/.cookie
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Using rpcauth authentication.
btcpayserver_bitcoind | 2020-12-16T05:19:44Z HTTP: starting 4 worker threads
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Using wallet directory /walletdata/mainnet
btcpayserver_bitcoind | 2020-12-16T05:19:44Z init message: Verifying wallet(s)...
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Using BerkeleyDB version Berkeley DB 4.8.30: (April  9, 2010)
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Using wallet /walletdata/mainnet
btcpayserver_bitcoind | 2020-12-16T05:19:44Z BerkeleyEnvironment::Open: LogDir=/walletdata/mainnet/database ErrorFile=/walletdata/mainnet/db.log
btcpayserver_bitcoind | 2020-12-16T05:19:44Z init message: Loading banlist...
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Using /16 prefix for IP bucketing
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Cache configuration:
btcpayserver_bitcoind | 2020-12-16T05:19:44Z * Using 2.0 MiB for block index database
btcpayserver_bitcoind | 2020-12-16T05:19:44Z * Using 8.0 MiB for chain state database
btcpayserver_bitcoind | 2020-12-16T05:19:44Z * Using 440.0 MiB for in-memory UTXO set (plus up to 286.1 MiB of unused mempool space)
btcpayserver_bitcoind | 2020-12-16T05:19:44Z init message: Loading block index...
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Opening LevelDB in /home/bitcoin/.bitcoin/blocks/index
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Opened LevelDB successfully
btcpayserver_bitcoind | 2020-12-16T05:19:44Z Using obfuscation key for /home/bitcoin/.bitcoin/blocks/index: 0000000000000000
btcpayserver_bitcoind | 2020-12-16T05:19:48Z ThreadRPCServer incorrect password attempt from 172.28.0.5:45524
btcpayserver_bitcoind | 2020-12-16T05:19:49Z LoadBlockIndexDB: last block file = 2364
btcpayserver_bitcoind | 2020-12-16T05:19:49Z LoadBlockIndexDB: last block file info: CBlockFileInfo(blocks=7, size=9365834, heights=661564...661570, time=2020-12-16...2020-12-16)
btcpayserver_bitcoind | 2020-12-16T05:19:49Z Checking all blk files are present...
btcpayserver_bitcoind | 2020-12-16T05:19:49Z LoadBlockIndexDB(): Block files have previously been pruned
btcpayserver_bitcoind | 2020-12-16T05:19:49Z Opening LevelDB in /home/bitcoin/.bitcoin/chainstate
btcpayserver_bitcoind | 2020-12-16T05:19:49Z Opened LevelDB successfully
btcpayserver_bitcoind | 2020-12-16T05:19:49Z Using obfuscation key for /home/bitcoin/.bitcoin/chainstate: 0c8f66d148677354
btcpayserver_bitcoind | 2020-12-16T05:19:49Z Loaded best chain: hashBestChain=000000000000000000031bae1d262ca9311ecedb297c833a76987ecfd1c6c19d height=661531 date=2020-12-15T22:58:18Z progress=0.999873
btcpayserver_bitcoind | 2020-12-16T05:19:49Z init message: Rewinding blocks...
btcpayserver_bitcoind | 2020-12-16T05:19:49Z FlushStateToDisk: write coins cache to disk (0 coins, 0kB) started
btcpayserver_bitcoind | 2020-12-16T05:19:49Z FlushStateToDisk: write coins cache to disk (0 coins, 0kB) completed (0.01s)
btcpayserver_bitcoind | 2020-12-16T05:19:49Z init message: Verifying blocks...
btcpayserver_bitcoind | 2020-12-16T05:19:49Z Verifying last 6 blocks at level 3
btcpayserver_bitcoind | 2020-12-16T05:19:49Z [0%]...[16%]...[33%]...[50%]...[66%]...[83%]...[99%]...[DONE].
btcpayserver_bitcoind | 2020-12-16T05:19:52Z No coin database inconsistencies in last 6 blocks (12353 transactions)
btcpayserver_bitcoind | 2020-12-16T05:19:52Z  block index            7855ms
btcpayserver_bitcoind | 2020-12-16T05:19:52Z init message: Loading wallet...
btcpayserver_bitcoind | 2020-12-16T05:19:52Z BerkeleyEnvironment::Open: LogDir=/walletdata/mainnet/database ErrorFile=/walletdata/mainnet/db.log
btcpayserver_bitcoind | 2020-12-16T05:19:52Z [default wallet] Wallet File Version = 169900
btcpayserver_bitcoind | 2020-12-16T05:19:52Z [default wallet] Keys: 2001 plaintext, 0 encrypted, 2001 w/ metadata, 2001 total. Unknown wallet records: 0
btcpayserver_bitcoind | 2020-12-16T05:19:52Z [default wallet] Wallet completed loading in              50ms
btcpayserver_bitcoind | 2020-12-16T05:19:52Z init message: Rescanning...
btcpayserver_bitcoind | 2020-12-16T05:19:52Z [default wallet] Rescanning last 1 blocks (from block 661530)...
btcpayserver_bitcoind | 2020-12-16T05:19:52Z [default wallet] Rescan started from block 0000000000000000000963392b6f5ada50432a29e6558ccdf45433221ac8ac85...
btcpayserver_bitcoind | 2020-12-16T05:19:52Z [default wallet] Rescan completed in              40ms
btcpayserver_bitcoind | 2020-12-16T05:19:52Z [default wallet] setKeyPool.size() = 2000
btcpayserver_bitcoind | 2020-12-16T05:19:52Z [default wallet] mapWallet.size() = 0
btcpayserver_bitcoind | 2020-12-16T05:19:52Z [default wallet] m_address_book.size() = 0
btcpayserver_bitcoind | 2020-12-16T05:19:52Z Unsetting NODE_NETWORK on prune mode
btcpayserver_bitcoind | 2020-12-16T05:19:52Z init message: Pruning blockstore...
btcpayserver_bitcoind | 2020-12-16T05:19:52Z block tree size = 661573
btcpayserver_bitcoind | 2020-12-16T05:19:52Z nBestHeight = 661531
btcpayserver_bitcoind | 2020-12-16T05:19:52Z torcontrol thread start
btcpayserver_bitcoind | 2020-12-16T05:19:52Z Bound to [::]:39388
btcpayserver_bitcoind | 2020-12-16T05:19:52Z Bound to 0.0.0.0:39388
btcpayserver_bitcoind | 2020-12-16T05:19:52Z init message: Loading P2P addresses...
btcpayserver_bitcoind | 2020-12-16T05:19:53Z Loaded 35248 addresses from peers.dat  272ms
btcpayserver_bitcoind | 2020-12-16T05:19:53Z init message: Starting network threads...
btcpayserver_bitcoind | 2020-12-16T05:19:53Z init message: Done loading
btcpayserver_bitcoind | 2020-12-16T05:19:53Z msghand thread start
btcpayserver_bitcoind | 2020-12-16T05:19:53Z dnsseed thread start
btcpayserver_bitcoind | 2020-12-16T05:19:53Z opencon thread start
btcpayserver_bitcoind | 2020-12-16T05:19:53Z addcon thread start
btcpayserver_bitcoind | 2020-12-16T05:19:53Z net thread start
btcpayserver_bitcoind | 2020-12-16T05:19:53Z UpdateTip: new best=0000000000000000000d878755dcea11e35e35c3239fd64bd9266290c7a62b28 height=661532 version=0x20800000 log2_work=92.518404 tx=596522271 date='2020-12-15T23:06:57Z' progress=0.999876 cache=1.5MiB(11749txo)
btcpayserver_bitcoind | 2020-12-16T05:19:54Z UpdateTip: new best=000000000000000000099b7bfa294492b40ec26fc4805b192ddec183f97629de height=661533 version=0x20400000 log2_work=92.51842 tx=596524984 date='2020-12-15T23:14:00Z' progress=0.999878 cache=3.0MiB(22722txo)
btcpayserver_bitcoind | 2020-12-16T05:19:55Z UpdateTip: new best=00000000000000000009e274238c203936ca1fe038bc164b3ba4aa6492b91743 height=661534 version=0x20800000 log2_work=92.518437 tx=596527840 date='2020-12-15T23:30:49Z' progress=0.999884 cache=4.7MiB(35449txo)
btcpayserver_bitcoind | 2020-12-16T05:19:56Z UpdateTip: new best=00000000000000000000013975f8eb9fd7c6285f7c6aca7598aa65fc1b14e182 height=661535 version=0x27ffe000 log2_work=92.518453 tx=596530638 date='2020-12-15T23:38:21Z' progress=0.999886 cache=6.0MiB(45748txo)
btcpayserver_bitcoind | 2020-12-16T05:19:57Z UpdateTip: new best=000000000000000000078384524a9b0c9249cb403618ac812d23605003821ccd height=661536 version=0x20000000 log2_work=92.518469 tx=596533271 date='2020-12-15T23:53:08Z' progress=0.999891 cache=7.8MiB(56947txo)
btcpayserver_bitcoind | 2020-12-16T05:19:58Z UpdateTip: new best=0000000000000000000ac71be779c96a02ccbbb16965aad99d40db9a7b49ba72 height=661537 version=0x20000000 log2_work=92.518486 tx=596535607 date='2020-12-16T00:15:34Z' progress=0.999899 cache=9.1MiB(67944txo)
btcpayserver_bitcoind | 2020-12-16T05:19:59Z UpdateTip: new best=000000000000000000066d109ecf7b90b6bac69eb68f627e3e1084149fa2f6a8 height=661538 version=0x20004000 log2_work=92.518502 tx=596538393 date='2020-12-16T00:33:58Z' progress=0.999905 cache=10.4MiB(78388txo)
btcpayserver_bitcoind | 2020-12-16T05:20:00Z UpdateTip: new best=000000000000000000023f9d5f3069d3e80170aabd0db8e8420bfdc65f4f592e height=661539 version=0x20200000 log2_work=92.518518 tx=596541604 date='2020-12-16T00:37:04Z' progress=0.999906 cache=11.6MiB(87756txo)
btcpayserver_bitcoind | 2020-12-16T05:20:00Z New outbound peer connected: version: 70015, blocks=661570, peer=0 (full-relay)
btcpayserver_bitcoind | 2020-12-16T05:20:01Z UpdateTip: new best=0000000000000000000e41aa3336d14b82415990f99aab75996dcb4add6f2bea height=661540 version=0x20000000 log2_work=92.518535 tx=596543535 date='2020-12-16T00:40:53Z' progress=0.999907 cache=12.7MiB(97117txo)
btcpayserver_bitcoind | 2020-12-16T05:20:01Z UpdateTip: new best=0000000000000000000d6d950759b67f8d5a273389e71a49073c54f6acbbf763 height=661541 version=0x20000000 log2_work=92.518551 tx=596546314 date='2020-12-16T00:42:12Z' progress=0.999908 cache=13.9MiB(106540txo)
btcpayserver_bitcoind | 2020-12-16T05:20:02Z UpdateTip: new best=0000000000000000000094bb77d879d0f1a225791de63ff2fdee067f0ab5f673 height=661542 version=0x20000000 log2_work=92.518567 tx=596548712 date='2020-12-16T00:46:27Z' progress=0.999909 cache=15.7MiB(114457txo)
btcpayserver_bitcoind | 2020-12-16T05:20:02Z New outbound peer connected: version: 70015, blocks=661570, peer=1 (full-relay)
btcpayserver_bitcoind | 2020-12-16T05:20:03Z UpdateTip: new best=00000000000000000002fa7e21409c4c7cc37460c0d63639f1c6f8b3d0c7e9cf height=661543 version=0x20800000 log2_work=92.518584 tx=596551472 date='2020-12-16T01:13:26Z' progress=0.999918 cache=17.1MiB(125660txo)
btcpayserver_bitcoind | 2020-12-16T05:20:04Z P2P peers available. Skipped DNS seeding.
btcpayserver_bitcoind | 2020-12-16T05:20:04Z dnsseed thread exit
btcpayserver_bitcoind | 2020-12-16T05:20:04Z UpdateTip: new best=0000000000000000000ba852440a65247541697d9905833c097a9c214a29441c height=661544 version=0x20400000 log2_work=92.5186 tx=596553620 date='2020-12-16T01:14:13Z' progress=0.999918 cache=18.2MiB(134731txo)
btcpayserver_bitcoind | 2020-12-16T05:20:04Z New outbound peer connected: version: 70015, blocks=661570, peer=2 (full-relay)
btcpayserver_bitcoind | 2020-12-16T05:20:05Z UpdateTip: new best=0000000000000000000aba415f4d46f35d75efcbdbfcce884539f08d6fc20af0 height=661545 version=0x27ffe000 log2_work=92.518616 tx=596556094 date='2020-12-16T01:28:37Z' progress=0.999923 cache=19.2MiB(143092txo)
btcpayserver_bitcoind | 2020-12-16T05:20:05Z UpdateTip: new best=00000000000000000008efd3413f95927028e611e54a23301a89917b36bfd606 height=661546 version=0x20800000 log2_work=92.518632 tx=596558318 date='2020-12-16T01:32:09Z' progress=0.999924 cache=20.4MiB(153307txo)
btcpayserver_bitcoind | 2020-12-16T05:20:06Z UpdateTip: new best=00000000000000000003103ef9da3993633d2c0e8b6c6b9c3dad24433c0e18df height=661547 version=0x20400000 log2_work=92.518649 tx=596560570 date='2020-12-16T01:40:34Z' progress=0.999927 cache=21.5MiB(162392txo)
btcpayserver_bitcoind | 2020-12-16T05:20:07Z UpdateTip: new best=0000000000000000000a05320cb885628010264172e2f1b6002fe0d3bc1afdba height=661548 version=0x20400000 log2_work=92.518665 tx=596561929 date='2020-12-16T01:42:14Z' progress=0.999928 cache=23.0MiB(174094txo)
btcpayserver_bitcoind | 2020-12-16T05:20:08Z UpdateTip: new best=0000000000000000000244d6c46ae215d4e3c0384cb44c1c66cbce6e05b94693 height=661549 version=0x20000000 log2_work=92.518681 tx=596563931 date='2020-12-16T01:54:35Z' progress=0.999932 cache=24.0MiB(182470txo)
btcpayserver_bitcoind | 2020-12-16T05:20:08Z UpdateTip: new best=0000000000000000000b14cee663272ffe592588110648c5522fe177d5aa47ef height=661550 version=0x37ffe000 log2_work=92.518698 tx=596565998 date='2020-12-16T01:55:09Z' progress=0.999932 cache=25.0MiB(190762txo)
btcpayserver_bitcoind | 2020-12-16T05:20:09Z UpdateTip: new best=00000000000000000004388b2d60470a8f4cba8251984a1fb165cc1450a5cda8 height=661551 version=0x27ffe000 log2_work=92.518714 tx=596567248 date='2020-12-16T02:05:03Z' progress=0.999935 cache=25.6MiB(195952txo)
btcpayserver_bitcoind | 2020-12-16T05:20:10Z UpdateTip: new best=0000000000000000000102b7aef9cc375dfed53481514083d987a813b070682c height=661552 version=0x20000000 log2_work=92.51873 tx=596568928 date='2020-12-16T02:11:02Z' progress=0.999937 cache=26.7MiB(204391txo)
btcpayserver_bitcoind | 2020-12-16T05:20:11Z UpdateTip: new best=000000000000000000090b7f9f47ee768438e9c6bbc3c6078546df895b2ae927 height=661553 version=0x37ffe000 log2_work=92.518747 tx=596570671 date='2020-12-16T02:11:18Z' progress=0.999937 cache=27.8MiB(213289txo)
btcpayserver_bitcoind | 2020-12-16T05:20:12Z UpdateTip: new best=0000000000000000000b0338113a1d7a3a821814243dc3bc49c228bc4f8d6cd3 height=661554 version=0x20c00000 log2_work=92.518763 tx=596572610 date='2020-12-16T02:20:08Z' progress=0.999940 cache=30.6MiB(222605txo)
btcpayserver_bitcoind | 2020-12-16T05:20:12Z UpdateTip: new best=00000000000000000009798ee61d06293316a598624665a7e0b9b3ae302cb819 height=661555 version=0x20000000 log2_work=92.518779 tx=596572611 date='2020-12-16T02:20:11Z' progress=0.999940 cache=30.6MiB(222606txo)
btcpayserver_bitcoind | 2020-12-16T05:20:13Z UpdateTip: new best=0000000000000000000e931ab05b2b346b5c22fbe2bdeb6537921558065d48d4 height=661556 version=0x229c2000 log2_work=92.518796 tx=596574509 date='2020-12-16T02:29:57Z' progress=0.999943 cache=31.6MiB(230333txo)
btcpayserver_bitcoind | 2020-12-16T05:20:14Z UpdateTip: new best=00000000000000000001d9c8346c51ad8321df13b3673d08d01318fb4f9bf008 height=661557 version=0x20000000 log2_work=92.518812 tx=596575895 date='2020-12-16T02:35:12Z' progress=0.999945 cache=32.3MiB(236649txo)
btcpayserver_bitcoind | 2020-12-16T05:20:14Z UpdateTip: new best=0000000000000000000851f5baa0c8e9109a6835cafc45a2b7f344bb89b1e0ef height=661558 version=0x20000000 log2_work=92.518828 tx=596577318 date='2020-12-16T02:42:58Z' progress=0.999948 cache=33.3MiB(244609txo)
btcpayserver_bitcoind | 2020-12-16T05:20:15Z UpdateTip: new best=00000000000000000004bdea3b3da00f6c7eabdafb642d7f7937c58f289217b3 height=661559 version=0x20000000 log2_work=92.518844 tx=596578791 date='2020-12-16T02:53:30Z' progress=0.999951 cache=34.7MiB(255672txo)
btcpayserver_bitcoind | 2020-12-16T05:20:16Z UpdateTip: new best=0000000000000000000d713de2a4ef8e1b272e6c8b114cda7c155f7fde4434f0 height=661560 version=0x2000e000 log2_work=92.518861 tx=596580809 date='2020-12-16T03:08:34Z' progress=0.999956 cache=35.6MiB(263233txo)
btcpayserver_bitcoind | 2020-12-16T05:20:17Z UpdateTip: new best=00000000000000000009e6c377e0623a5d6d9a2bd0e76833db1141ab2f1c7d7d height=661561 version=0x20000000 log2_work=92.518877 tx=596582460 date='2020-12-16T03:14:06Z' progress=0.999958 cache=36.3MiB(269156txo)
btcpayserver_bitcoind | 2020-12-16T05:20:18Z UpdateTip: new best=00000000000000000003f6fe31ea3d1894368203cd3d38fd88cef42b8c034415 height=661562 version=0x37ffe000 log2_work=92.518893 tx=596584465 date='2020-12-16T03:20:02Z' progress=0.999960 cache=37.1MiB(275430txo)
btcpayserver_bitcoind | 2020-12-16T05:20:18Z UpdateTip: new best=0000000000000000000879fd7914598ffe0f13570238da77aba93b4b63865d48 height=661563 version=0x3fff0000 log2_work=92.51891 tx=596586545 date='2020-12-16T03:35:40Z' progress=0.999965 cache=38.1MiB(283940txo)
btcpayserver_bitcoind | 2020-12-16T05:20:19Z UpdateTip: new best=0000000000000000000320284a9aa7fe9f1868c7c6cd5fb076f1f86459e1d377 height=661564 version=0x2000e000 log2_work=92.518926 tx=596589367 date='2020-12-16T04:12:43Z' progress=0.999978 cache=39.3MiB(293847txo)
btcpayserver_bitcoind | 2020-12-16T05:20:20Z UpdateTip: new best=000000000000000000020ee493543950901aba711b26b588e0f3634571fa26af height=661565 version=0x2fffe000 log2_work=92.518942 tx=596591010 date='2020-12-16T04:17:18Z' progress=0.999979 cache=40.1MiB(299869txo)
btcpayserver_bitcoind | 2020-12-16T05:20:20Z UpdateTip: new best=0000000000000000000ca2ae1f12ec5f1ee89cf8913fa7513cb955fc9e74fb16 height=661566 version=0x2fffe000 log2_work=92.518959 tx=596593177 date='2020-12-16T04:26:29Z' progress=0.999982 cache=40.7MiB(305316txo)
btcpayserver_bitcoind | 2020-12-16T05:20:21Z UpdateTip: new best=0000000000000000000de69d6780ee5a3480b45d78d21db90608b5416c18e058 height=661567 version=0x37ffe000 log2_work=92.518975 tx=596594923 date='2020-12-16T04:30:37Z' progress=0.999983 cache=41.7MiB(312898txo)
btcpayserver_bitcoind | 2020-12-16T05:20:22Z UpdateTip: new best=00000000000000000004cb0ea5993e528134d76da82b7565a342f504106b9522 height=661568 version=0x3fffe000 log2_work=92.518991 tx=596596719 date='2020-12-16T04:36:49Z' progress=0.999986 cache=42.5MiB(319282txo)
btcpayserver_bitcoind | 2020-12-16T05:20:23Z UpdateTip: new best=0000000000000000000de6ce8f743f7ce822d68ad88f19d6c33b3da667840082 height=661569 version=0x20c00000 log2_work=92.519007 tx=596598084 date='2020-12-16T04:45:25Z' progress=0.999988 cache=43.2MiB(325527txo)
btcpayserver_bitcoind | 2020-12-16T05:20:24Z UpdateTip: new best=00000000000000000007638b94ada4abd01f15a347850f807abbc4488b9af440 height=661570 version=0x20000000 log2_work=92.519024 tx=596599393 date='2020-12-16T04:46:17Z' progress=0.999989 cache=44.1MiB(332768txo)
btcpayserver_bitcoind | 2020-12-16T05:20:24Z Leaving InitialBlockDownload (latching to false)
btcpayserver_bitcoind | 2020-12-16T05:20:33Z Imported mempool transactions from disk: 3880 succeeded, 30000 failed, 0 expired, 0 already there
btcpayserver_bitcoind | 2020-12-16T05:20:33Z New outbound peer connected: version: 70015, blocks=661570, peer=4 (full-relay)
btcpayserver_bitcoind | 2020-12-16T05:20:34Z New outbound peer connected: version: 70015, blocks=661570, peer=5 (full-relay)
btcpayserver_bitcoind | 2020-12-16T05:20:34Z New outbound peer connected: version: 70015, blocks=661570, peer=6 (full-relay)
btcpayserver_bitcoind | 2020-12-16T05:20:35Z New outbound peer connected: version: 70015, blocks=661570, peer=7 (full-relay)
btcpayserver_bitcoind | 2020-12-16T05:20:50Z New outbound peer connected: version: 70015, blocks=661570, peer=9 (full-relay)
btcpayserver_bitcoind | 2020-12-16T05:20:51Z New outbound peer connected: version: 70015, blocks=661570, peer=10 (block-relay)
btcpayserver_bitcoind | 2020-12-16T05:20:56Z New outbound peer connected: version: 70015, blocks=661570, peer=11 (block-relay)
2020-12-16T05:26:59Z UpdateTip: new best=000000000000000000088111af330adba3d0f6c4a6dfec60fbbe900f688502d4 height=661571 version=0x20800000 log2_work=92.51904 tx=596601872 date='2020-12-16T05:26:39Z' progress=1.000000 cache=48.4MiB(368176txo) warning='70 of last 100 blocks have unexpected version'
2020-12-16T05:36:19Z UpdateTip: new best=00000000000000000007c59159497e60746d51d88377948c541c6e98dd167444 height=661572 version=0x20400000 log2_work=92.519056 tx=596604345 date='2020-12-16T05:36:10Z' progress=1.000000 cache=49.4MiB(376344txo) warning='70 of last 100 blocks have unexpected version'
2020-12-16T05:39:35Z UpdateTip: new best=00000000000000000007c8b33efdd8f13f50c682f20e0171947ad25e9147e19a height=661573 version=0x20000000 log2_work=92.519073 tx=596606437 date='2020-12-16T05:39:19Z' progress=1.000000 cache=49.9MiB(380296txo) warning='70 of last 100 blocks have unexpected version'
2020-12-16T05:41:46Z UpdateTip: new best=00000000000000000001900ecfd4f9297f0b6301d0a3fac207ecb5973c78ffa9 height=661574 version=0x20000000 log2_work=92.519089 tx=596608321 date='2020-12-16T05:41:27Z' progress=1.000000 cache=50.4MiB(384006txo) warning='69 of last 100 blocks have unexpected version'
2020-12-16T05:48:48Z Pre-allocating up to position 0x300000 in rev02364.dat
2020-12-16T05:48:48Z UpdateTip: new best=0000000000000000000a37dda700fa1525654a62dd7c2e7510287f4edd7bc831 height=661575 version=0x37ffe000 log2_work=92.519105 tx=596610279 date='2020-12-16T05:48:11Z' progress=1.000000 cache=51.2MiB(390946txo) warning='69 of last 100 blocks have unexpected version'
2020-12-16T05:50:06Z Pre-allocating up to position 0x2000000 in blk02364.dat
2020-12-16T05:50:06Z UpdateTip: new best=0000000000000000000ebe84a47ecaeaad0aa049b0baa7c0f990e0f198e30037 height=661576 version=0x20000000 log2_work=92.519122 tx=596611182 date='2020-12-16T05:49:28Z' progress=1.000000 cache=51.8MiB(395193txo) warning='68 of last 100 blocks have unexpected version'
Read more comments on GitHub >

github_iconTop Results From Across the Web

BTC node state changing back and forth ...
Hi I am unavailable to get BTC node to a ready state. It just switch between notstarted and synching I used docker-compose.yml to...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found