Author

Topic: Electrs connection refused to bitcoind on startup (Read 61 times)

newbie
Activity: 2
Merit: 1
Many thanks! incoming connections was in fact disabled. 


BTC Core v .27 running on Mac os x.  Electrs cannot connect to the bitcoin node running on the same host.  Firewall is off.
I've tried rpcbind and rpcallowip for the localhost, with same error code.
-snip-
Caused by:
    0: bitcoin p2p failed to connect: 127.0.0.1:8333
    1: Connection refused (os error 61)

=====================

2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -natpmp=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -discover=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -listenonion=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -i2pacceptincoming=0
-snip-
2024-07-04T19:03:06Z Setting file arg: listen = false
Your "settings.json" has set listen=false setting which disables p2p inbound connections.
That's set by the GUI in "Allow incoming connections" settings which should be ticked by default.
If unchecked, your node will only be able to establish "outbound" connections (it can establish connections to others, but others wont be able to initiate connections to it)
Electrs requires p2p connection so it's required to establish connection to your Bitcoin Core.

Settings related to RPC isn't related since the ".cookie" file is correctly set and the error didn't indicate any RPC-related issue.

What does your bitcoin.conf file have in it?
It's in his logs, the lines with "Config file arg:" are options set in his 'bitcoin.conf' file.
legendary
Activity: 3500
Merit: 6320
Crypto Swap Exchange
BTC Core v .27 running on Mac os x.  Electrs cannot connect to the bitcoin node running on the same host.  Firewall is off.
I've tried rpcbind and rpcallowip for the localhost, with same error code.
-snip-
Caused by:
    0: bitcoin p2p failed to connect: 127.0.0.1:8333
    1: Connection refused (os error 61)

=====================

2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -natpmp=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -discover=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -listenonion=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -i2pacceptincoming=0
-snip-
2024-07-04T19:03:06Z Setting file arg: listen = false
Your "settings.json" has set listen=false setting which disables p2p inbound connections.
That's set by the GUI in "Allow incoming connections" settings which should be ticked by default.
If unchecked, your node will only be able to establish "outbound" connections (it can establish connections to others, but others wont be able to initiate connections to it)
Electrs requires p2p connection so it's required to establish connection to your Bitcoin Core.

Settings related to RPC isn't related since the ".cookie" file is correctly set and the error didn't indicate any RPC-related issue.

What does your bitcoin.conf file have in it?
It's in his logs, the lines with "Config file arg:" are options set in his 'bitcoin.conf' file.

I thought, and I could be 100% wrong here, that the config file arg are what is in the default file location NOT what is in the file that may or may not be loaded by the command line arguments when starting the daemon.

It's been a while but for some reason I remember someone having a similar issue years and years ago.

-Dave
legendary
Activity: 2534
Merit: 6080
Self-proclaimed Genius
BTC Core v .27 running on Mac os x.  Electrs cannot connect to the bitcoin node running on the same host.  Firewall is off.
I've tried rpcbind and rpcallowip for the localhost, with same error code.
-snip-
Caused by:
    0: bitcoin p2p failed to connect: 127.0.0.1:8333
    1: Connection refused (os error 61)

=====================

2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -natpmp=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -discover=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -listenonion=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -i2pacceptincoming=0
-snip-
2024-07-04T19:03:06Z Setting file arg: listen = false
Your "settings.json" has set listen=false setting which disables p2p inbound connections.
That's set by the GUI in "Allow incoming connections" settings which should be ticked by default.
If unchecked, your node will only be able to establish "outbound" connections (it can establish connections to others, but others wont be able to initiate connections to it)
Electrs requires p2p connection so it's required to establish connection to your Bitcoin Core.

Settings related to RPC isn't related since the ".cookie" file is correctly set and the error didn't indicate any RPC-related issue.

What does your bitcoin.conf file have in it?
It's in his logs, the lines with "Config file arg:" are options set in his 'bitcoin.conf' file.
legendary
Activity: 3500
Merit: 6320
Crypto Swap Exchange
Post the logs with the code tags makes it easier to read.
What does your bitcoin.conf file have in it?

IIRC you will need to have RPCUSER and RPCPASSWORD and RPCallow = 0.0.0.0


-Dave

Code:
 ./target/release/electrs --log-filters=DEBUG --db-dir /Volumes/USB_3TB/db --daemon-dir ~/Library/ApplicationSupport/Bitcoin  --network=bitcoin
Starting electrs 0.10.5 on x86_64 macos with Config { network: Bitcoin, db_path: "/Volumes/USB_3TB/db/bitcoin", db_log_dir: None, daemon_dir: "/Users/xxx/Library/ApplicationSupport/Bitcoin", daemon_auth: CookieFile("/Users/xxx/Library/ApplicationSupport/Bitcoin/.cookie"), daemon_rpc_addr: 127.0.0.1:8332, daemon_p2p_addr: 127.0.0.1:8333, electrum_rpc_addr: 127.0.0.1:50001, monitoring_addr: 127.0.0.1:4224, wait_duration: 10s, jsonrpc_timeout: 15s, index_batch_size: 10, index_lookup_limit: None, reindex_last_blocks: 0, auto_reindex: true, ignore_mempool: false, sync_once: false, skip_block_download_wait: false, disable_electrum_rpc: false, server_banner: "Welcome to electrs 0.10.5 (Electrum Rust Server)!", signet_magic: f9beb4d9, args: [] }
[2024-07-04T19:48:57.591Z DEBUG tiny_http] Server listening on 127.0.0.1:4224
[2024-07-04T19:48:57.591Z INFO  electrs::metrics::metrics_impl] serving Prometheus metrics on 127.0.0.1:4224
[2024-07-04T19:48:57.591Z INFO  electrs::server] serving Electrum RPC on 127.0.0.1:50001
[2024-07-04T19:48:57.592Z DEBUG tiny_http] Running accept thread
[2024-07-04T19:49:00.094Z INFO  electrs::db] "/Volumes/USB_3TB/db/bitcoin": 203 SST files, 47.91021899 GB, 6.010814896 Grows
[2024-07-04T19:49:00.095Z DEBUG electrs::db] DB Some(Config { compacted: true, format: 0 })
[2024-07-04T19:49:00.170Z DEBUG electrs::db] auto-compactions enabled
[2024-07-04T19:49:02.341Z INFO  electrs::chain] loading 848545 headers, tip=00000000000000000002a2fab0d010ce270927e8c9a698a34f5e3d6c4dbcffd3
[2024-07-04T19:49:04.412Z INFO  electrs::chain] chain updated: tip=00000000000000000002a2fab0d010ce270927e8c9a698a34f5e3d6c4dbcffd3, height=848545
[2024-07-04T19:49:04.424Z DEBUG bitcoincore_rpc] JSON-RPC request: getblockchaininfo []
[2024-07-04T19:49:04.425Z DEBUG bitcoincore_rpc] JSON-RPC request: getnetworkinfo []
[2024-07-04T19:49:04.425Z DEBUG bitcoincore_rpc] JSON-RPC request: getnetworkinfo []
[2024-07-04T19:49:04.426Z DEBUG bitcoincore_rpc] JSON-RPC request: getblockchaininfo []
[2024-07-04T19:49:04.426Z DEBUG bitcoincore_rpc] JSON-RPC request: getnetworkinfo []
[2024-07-04T19:49:04.427Z INFO  electrs::db] closing DB at /Volumes/USB_3TB/db/bitcoin
Error: electrs failed

Caused by:
    0: bitcoin p2p failed to connect: 127.0.0.1:8333
    1: Connection refused (os error 61)


=====================


2024-07-04T19:03:05Z Ignoring unknown rw_settings value proxy-prev
2024-07-04T19:03:05Z Bitcoin Core version v27.0.0 (release build)
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -natpmp=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -discover=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -listenonion=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -i2pacceptincoming=0
2024-07-04T19:03:05Z Qt 5.15.11 (static), plugin=cocoa (static)
2024-07-04T19:03:05Z Static plugins:
2024-07-04T19:03:05Z  QCocoaIntegrationPlugin, version 331520
2024-07-04T19:03:05Z  QMacStylePlugin, version 331520
2024-07-04T19:03:05Z Style: macintosh / QMacStyle
2024-07-04T19:03:05Z System: macOS 11.7, x86_64-little_endian-lp64
2024-07-04T19:03:05Z Screen: Color LCD 1440x900, pixel ratio=2.0
2024-07-04T19:03:06Z GUI: Populating font family aliases took 469 ms. Replace uses of missing font family ".AppleSystemUIFont,13,-1,5,50,0,0,0,0,0" with one that exists to avoid this cost.
2024-07-04T19:03:06Z GUI: QFSFileEngine::open: No file name specified
2024-07-04T19:03:06Z GUI: QFSFileEngine::open: No file name specified
2024-07-04T19:03:06Z GUI: QFSFileEngine::open: No file name specified
2024-07-04T19:03:06Z GUI: QFSFileEngine::open: No file name specified
2024-07-04T19:03:06Z GUI: QFSFileEngine::open: No file name specified
2024-07-04T19:03:06Z Script verification uses 7 additional threads
2024-07-04T19:03:06Z Using the 'sse4(1way),sse41(4way),avx2(8way)' SHA256 implementation
2024-07-04T19:03:06Z Using RdRand as an additional entropy source
2024-07-04T19:03:06Z Default data directory /Users/xxx/Library/Application Support/Bitcoin
2024-07-04T19:03:06Z Using data directory /Users/xxx/Library/ApplicationSupport/Bitcoin
2024-07-04T19:03:06Z Config file: /Users/xxx/Library/Application Support/Bitcoin/bitcoin.conf
2024-07-04T19:03:06Z Config file arg: [main] blockfilterindex="1"
2024-07-04T19:03:06Z Config file arg: [main] datadir="/Users/xxx/Library/ApplicationSupport/Bitcoin"
2024-07-04T19:03:06Z Config file arg: [main] prune="0"
2024-07-04T19:03:06Z Config file arg: [main] rpccookiefile="/Users/xxx/Library/ApplicationSupport/Bitcoin/.cookie"
2024-07-04T19:03:06Z Config file arg: [main] server="1"
2024-07-04T19:03:06Z Config file arg: [main] timeout="6000"
2024-07-04T19:03:06Z Config file arg: [main] txindex="1"
2024-07-04T19:03:06Z Config file arg: [main] walletbroadcast="0"
2024-07-04T19:03:06Z Setting file arg: dbcache = "2400"
2024-07-04T19:03:06Z Setting file arg: listen = false
2024-07-04T19:03:06Z Setting file arg: proxy-prev = "127.0.0.1:9150"
2024-07-04T19:03:06Z Setting file arg: upnp = false
2024-07-04T19:03:06Z Setting file arg: wallet = ["","cormorant"]
2024-07-04T19:03:06Z Using at most 125 automatic connections (2560 file descriptors available)
2024-07-04T19:03:06Z Using 16 MiB out of 16 MiB requested for signature cache, able to store 524288 elements
2024-07-04T19:03:06Z Using 16 MiB out of 16 MiB requested for script execution cache, able to store 524288 elements
2024-07-04T19:03:06Z scheduler thread start
2024-07-04T19:03:06Z Binding RPC on address ::1 port 8332
2024-07-04T19:03:06Z Binding RPC on address 127.0.0.1 port 8332
2024-07-04T19:03:06Z Using random cookie authentication.
2024-07-04T19:03:06Z Generated RPC authentication cookie /Users/xxx/Library/ApplicationSupport/Bitcoin/.cookie
2024-07-04T19:03:06Z Starting HTTP server with 4 worker threads
2024-07-04T19:03:06Z Using wallet directory /Users/xxx/Library/ApplicationSupport/Bitcoin
2024-07-04T19:03:06Z init message: Verifying wallet(s)…
2024-07-04T19:03:06Z Using BerkeleyDB version Berkeley DB 4.8.30: (April  9, 2010)
2024-07-04T19:03:06Z Using wallet /Users/xxx/Library/ApplicationSupport/Bitcoin/wallet.dat
2024-07-04T19:03:06Z BerkeleyEnvironment::Open: LogDir=/Users/xxx/Library/ApplicationSupport/Bitcoin/database ErrorFile=/Users/xxx/Library/ApplicationSupport/Bitcoin/db.log
2024-07-04T19:03:06Z Using SQLite Version 3.38.5
2024-07-04T19:03:06Z Using wallet /Users/xxx/Library/ApplicationSupport/Bitcoin/cormorant
2024-07-04T19:03:06Z Using /16 prefix for IP bucketing
2024-07-04T19:03:06Z init message: Loading P2P addresses…
2024-07-04T19:03:07Z Loaded 72098 addresses from peers.dat  346ms
2024-07-04T19:03:07Z init message: Loading banlist…
2024-07-04T19:03:07Z SetNetworkActive: true
2024-07-04T19:03:07Z Script verification uses 7 additional threads
2024-07-04T19:03:07Z Cache configuration:
2024-07-04T19:03:07Z * Using 2.0 MiB for block index database
2024-07-04T19:03:07Z * Using 299.8 MiB for transaction index database
2024-07-04T19:03:07Z * Using 262.3 MiB for basic block filter index database
2024-07-04T19:03:07Z * Using 8.0 MiB for chain state database
2024-07-04T19:03:07Z * Using 1828.0 MiB for in-memory UTXO set (plus up to 286.1 MiB of unused mempool space)
2024-07-04T19:03:07Z init message: Loading block index…
2024-07-04T19:03:07Z Assuming ancestors of block 000000000000000000026811d149d4d261995ec5b3f64f439a0a10e1a464af9a have valid signatures.
2024-07-04T19:03:07Z Setting nMinimumChainWork=000000000000000000000000000000000000000063c4ebd298db40af57541800
2024-07-04T19:03:07Z Opening LevelDB in /Users/xxx/Library/ApplicationSupport/Bitcoin/blocks/index
2024-07-04T19:03:07Z Opened LevelDB successfully
2024-07-04T19:03:07Z Using obfuscation key for /Users/xxx/Library/ApplicationSupport/Bitcoin/blocks/index: 0000000000000000
2024-07-04T19:03:10Z LoadBlockIndexDB: last block file = 4368
2024-07-04T19:03:10Z LoadBlockIndexDB: last block file info: CBlockFileInfo(blocks=83, size=126744344, heights=850626...850708, time=2024-07-04...2024-07-04)
2024-07-04T19:03:10Z Checking all blk files are present...
2024-07-04T19:03:12Z Initializing chainstate Chainstate [ibd] @ height -1 (null)
2024-07-04T19:03:12Z Opening LevelDB in /Users/xxx/Library/ApplicationSupport/Bitcoin/chainstate
2024-07-04T19:03:12Z Opened LevelDB successfully
2024-07-04T19:03:12Z Using obfuscation key for /Users/xxx/Library/ApplicationSupport/Bitcoin/chainstate: cc15828a4afa3fb6
2024-07-04T19:03:12Z Loaded best chain: hashBestChain=00000000000000000002386e67e4874c48232530ddfb0b54f8abdde2c94fe24a height=850708 date=2024-07-04T18:50:53Z progress=0.999995
2024-07-04T19:03:12Z Opening LevelDB in /Users/xxx/Library/ApplicationSupport/Bitcoin/chainstate
2024-07-04T19:03:12Z Opened LevelDB successfully
2024-07-04T19:03:12Z Using obfuscation key for /Users/xxx/Library/ApplicationSupport/Bitcoin/chainstate: cc15828a4afa3fb6
2024-07-04T19:03:12Z [Chainstate [ibd] @ height 850708 (00000000000000000002386e67e4874c48232530ddfb0b54f8abdde2c94fe24a)] resized coinsdb cache to 8.0 MiB
2024-07-04T19:03:12Z [Chainstate [ibd] @ height 850708 (00000000000000000002386e67e4874c48232530ddfb0b54f8abdde2c94fe24a)] resized coinstip cache to 1828.0 MiB
2024-07-04T19:03:12Z init message: Verifying blocks…
2024-07-04T19:03:12Z Verifying last 6 blocks at level 3
2024-07-04T19:03:12Z Verification progress: 0%
2024-07-04T19:03:14Z Verification progress: 16%
2024-07-04T19:03:15Z Verification progress: 33%
2024-07-04T19:03:15Z Verification progress: 50%
2024-07-04T19:03:16Z Verification progress: 66%
2024-07-04T19:03:16Z Verification progress: 83%
2024-07-04T19:03:17Z Verification progress: 99%
2024-07-04T19:03:17Z Verification: No coin database inconsistencies in last 6 blocks (19651 transactions)
2024-07-04T19:03:17Z  block index           10064ms
2024-07-04T19:03:17Z Opening LevelDB in /Users/xxx/Library/ApplicationSupport/Bitcoin/indexes/txindex
2024-07-04T19:03:17Z Opened LevelDB successfully
2024-07-04T19:03:17Z Using obfuscation key for /Users/xxx/Library/ApplicationSupport/Bitcoin/indexes/txindex: 0000000000000000
2024-07-04T19:03:17Z Opening LevelDB in /Users/xxx/Library/ApplicationSupport/Bitcoin/indexes/blockfilter/basic/db
2024-07-04T19:03:17Z Opened LevelDB successfully
2024-07-04T19:03:17Z Using obfuscation key for /Users/xxx/Library/ApplicationSupport/Bitcoin/indexes/blockfilter/basic/db: 0000000000000000
2024-07-04T19:03:17Z init message: Loading wallet…
2024-07-04T19:03:17Z BerkeleyEnvironment::Open: LogDir=/Users/xxx/Library/ApplicationSupport/Bitcoin/database ErrorFile=/Users/xxx/Library/ApplicationSupport/Bitcoin/db.log
2024-07-04T19:03:17Z [default wallet] Wallet file version = 10500, last client version = 270000
2024-07-04T19:03:17Z [default wallet] Legacy Wallet Keys: 2001 plaintext, 0 encrypted, 2001 w/ metadata, 2001 total.
2024-07-04T19:03:17Z [default wallet] Descriptors: 0, Descriptor Keys: 0 plaintext, 0 encrypted, 0 total.
2024-07-04T19:03:17Z [default wallet] Wallet completed loading in             128ms
2024-07-04T19:03:17Z [default wallet] setKeyPool.size() = 2000
2024-07-04T19:03:17Z [default wallet] mapWallet.size() = 58
2024-07-04T19:03:17Z [default wallet] m_address_book.size() = 6000
2024-07-04T19:03:17Z Using SQLite Version 3.38.5
2024-07-04T19:03:17Z Using wallet /Users/xxx/Library/ApplicationSupport/Bitcoin/cormorant
2024-07-04T19:03:17Z init message: Loading wallet…
2024-07-04T19:03:17Z [cormorant] Wallet file version = 10500, last client version = 270000
2024-07-04T19:03:17Z [cormorant] Descriptors: 7, Descriptor Keys: 0 plaintext, 0 encrypted, 0 total.
2024-07-04T19:03:17Z [cormorant] Setting spkMan to active: id = 9539d81b48db2e23376356eb0fce934f2de7e22ddc4553c1b7dd71e1d48bd62e, type = legacy, internal = false
2024-07-04T19:03:17Z [cormorant] Setting spkMan to active: id = 40e7175e066b6d455718e32e5aff87d7bd865e74d3bcb98f43a5c0d162343106, type = bech32, internal = false
2024-07-04T19:03:17Z [cormorant] Wallet completed loading in             309ms
2024-07-04T19:03:17Z [cormorant] setKeyPool.size() = 2001
2024-07-04T19:03:17Z [cormorant] mapWallet.size() = 61
2024-07-04T19:03:17Z [cormorant] m_address_book.size() = 47
2024-07-04T19:03:17Z Setting NODE_NETWORK on non-prune mode
2024-07-04T19:03:17Z block tree size = 850717
2024-07-04T19:03:17Z nBestHeight = 850708
2024-07-04T19:03:17Z initload thread start
2024-07-04T19:03:17Z txindex thread start
2024-07-04T19:03:17Z Loaded 2 addresses from "anchors.dat"
2024-07-04T19:03:17Z Loading 89601 mempool transactions from disk...
2024-07-04T19:03:17Z basic block filter index thread start
2024-07-04T19:03:17Z basic block filter index is enabled at height 850708
2024-07-04T19:03:17Z basic block filter index thread exit
2024-07-04T19:03:17Z txindex is enabled at height 850708
2024-07-04T19:03:17Z txindex thread exit
2024-07-04T19:03:17Z 2 block-relay-only anchors will be tried for connections.
2024-07-04T19:03:17Z init message: Starting network threads…
2024-07-04T19:03:17Z Leaving InitialBlockDownload (latching to false)
2024-07-04T19:03:17Z dnsseed thread start
2024-07-04T19:03:17Z msghand thread start
2024-07-04T19:03:17Z init message: Done loading
2024-07-04T19:03:17Z opencon thread start
2024-07-04T19:03:17Z addcon thread start
2024-07-04T19:03:17Z net thread start
2024-07-04T19:03:17Z Waiting 300 seconds before querying DNS seeds.
2024-07-04T19:03:17Z GUI: Platform customization: "macosx"
2024-07-04T19:03:18Z New block-relay-only v1 peer connected: version: 70016, blocks=850708, peer=0
2024-07-04T19:03:19Z New block-relay-only v2 peer connected: version: 70016, blocks=850708, peer=1
2024-07-04T19:03:28Z New outbound-full-relay v1 peer connected: version: 70016, blocks=850708, peer=3
2024-07-04T19:03:35Z New outbound-full-relay v2 peer connected: version: 70016, blocks=850708, peer=4
2024-07-04T19:03:39Z P2P peers available. Skipped DNS seeding.
2024-07-04T19:03:39Z dnsseed thread exit
2024-07-04T19:03:40Z New outbound-full-relay v2 peer connected: version: 70016, blocks=850708, peer=8
2024-07-04T19:03:55Z New outbound-full-relay v1 peer connected: version: 70016, blocks=850708, peer=12
2024-07-04T19:04:23Z New outbound-full-relay v1 peer connected: version: 70016, blocks=850708, peer=14
2024-07-04T19:04:25Z New outbound-full-relay v2 peer connected: version: 70016, blocks=850708, peer=16
2024-07-04T19:04:26Z Progress loading mempool transactions from disk: 10% (tried 8961, 80640 remaining)
2024-07-04T19:04:52Z New outbound-full-relay v2 peer connected: version: 70016, blocks=850708, peer=17
2024-07-04T19:04:52Z New block-relay-only v1 peer connected: version: 70016, blocks=850708, peer=18
2024-07-04T19:05:16Z New outbound-full-relay v1 peer connected: version: 70015, blocks=850708, peer=20
2024-07-04T19:05:35Z New outbound-full-relay v1 peer connected: version: 70016, blocks=850708, peer=21
2024-07-04T19:05:39Z Progress loading mempool transactions from disk: 20% (tried 17921, 71680 remaining)
2024-07-04T19:08:23Z Progress loading mempool transactions from disk: 30% (tried 26881, 62720 remaining)
2024-07-04T19:11:49Z Saw new header hash=00000000000000000001d4c9c08d10ba93443e29aa2714e3e701a2fdc234f970 height=850709
2024-07-04T19:11:55Z UpdateTip: new best=00000000000000000001d4c9c08d10ba93443e29aa2714e3e701a2fdc234f970 height=850709 version=0x20800000 log2_work=95.020424 tx=1035126564 date='2024-07-04T19:11:18Z' progress=1.000000 cache=59.8MiB(446059txo)
2024-07-04T19:12:32Z Progress loading mempool transactions from disk: 40% (tried 35841, 53760 remaining)
2024-07-04T19:12:44Z Progress loading mempool transactions from disk: 50% (tried 44801, 44800 remaining)
2024-07-04T19:12:46Z Progress loading mempool transactions from disk: 60% (tried 53761, 35840 remaining)
2024-07-04T19:12:47Z Progress loading mempool transactions from disk: 70% (tried 62721, 26880 remaining)
2024-07-04T19:12:49Z Progress loading mempool transactions from disk: 80% (tried 71681, 17920 remaining)
2024-07-04T19:12:50Z Progress loading mempool transactions from disk: 90% (tried 80641, 8960 remaining)
2024-07-04T19:12:52Z Imported mempool transactions from disk: 88562 succeeded, 891 failed, 0 expired, 148 already there, 0 waiting for initial broadcast
2024-07-04T19:12:52Z initload thread exit
2024-07-04T19:13:08Z Saw new header hash=00000000000000000002da7d3cf3aa3f8197748e96d958e77d15fee02cc34b56 height=850710
2024-07-04T19:13:10Z UpdateTip: new best=00000000000000000002da7d3cf3aa3f8197748e96d958e77d15fee02cc34b56 height=850710 version=0x24326000 log2_work=95.020437 tx=1035132606 date='2024-07-04T19:12:39Z' progress=1.000000 cache=69.8MiB(517582txo)
2024-07-04T19:16:08Z Saw new header hash=0000000000000000000352b386819edcb7611b1f5767630378f644918b631490 height=850711
2024-07-04T19:16:08Z Saw new cmpctblock header hash=0000000000000000000352b386819edcb7611b1f5767630378f644918b631490 peer=14
2024-07-04T19:16:10Z UpdateTip: new best=0000000000000000000352b386819edcb7611b1f5767630378f644918b631490 height=850711 version=0x215d2000 log2_work=95.020449 tx=1035136175 date='2024-07-04T19:15:27Z' progress=1.000000 cache=70.1MiB(520873txo)
2024-07-04T19:24:17Z Saw new header hash=0000000000000000000174ed03b10bddcd47e36e74883b222381eb3686129fc3 height=850712
2024-07-04T19:24:17Z Saw new cmpctblock header hash=0000000000000000000174ed03b10bddcd47e36e74883b222381eb3686129fc3 peer=14
2024-07-04T19:24:30Z UpdateTip: new best=0000000000000000000174ed03b10bddcd47e36e74883b222381eb3686129fc3 height=850712 version=0x2b558000 log2_work=95.020462 tx=1035139551 date='2024-07-04T19:24:28Z' progress=1.000000 cache=70.9MiB(527921txo)
2024-07-04T19:36:45Z Saw new header hash=0000000000000000000060f2bf74044d393ef471c63ffd3e5ccdb0ec4c953271 height=850713
2024-07-04T19:36:45Z Saw new cmpctblock header hash=0000000000000000000060f2bf74044d393ef471c63ffd3e5ccdb0ec4c953271 peer=14
2024-07-04T19:36:45Z UpdateTip: new best=0000000000000000000060f2bf74044d393ef471c63ffd3e5ccdb0ec4c953271 height=850713 version=0x2f3b8000 log2_work=95.020475 tx=1035143772 date='2024-07-04T19:36:20Z' progress=1.000000 cache=72.2MiB(538425txo)
2024-07-04T19:38:34Z New block-relay-only v1 peer connected: version: 70016, blocks=850713, peer=23
2024-07-04T19:39:27Z Saw new header hash=0000000000000000000227f6a930ff2403ab7fd8a15ce00422b3df0c3ed911a8 height=850714
2024-07-04T19:39:27Z UpdateTip: new best=0000000000000000000227f6a930ff2403ab7fd8a15ce00422b3df0c3ed911a8 height=850714 version=0x20002000 log2_work=95.020488 tx=1035146156 date='2024-07-04T19:38:54Z' progress=1.000000 cache=72.5MiB(540698txo)
2024-07-04T19:46:02Z Saw new header hash=000000000000000000022a832ade79443afb8061b6c8f2e851c8603cc672b60f height=850715
2024-07-04T19:46:02Z UpdateTip: new best=000000000000000000022a832ade79443afb8061b6c8f2e851c8603cc672b60f height=850715 version=0x24c40000 log2_work=95.020501 tx=1035148598 date='2024-07-04T19:45:48Z' progress=1.000000 cache=73.0MiB(545431txo)
2024-07-04T19:57:12Z New outbound-full-relay v1 peer connected: version: 70015, blocks=850715, peer=25
2024-07-04T19:57:58Z Saw new header hash=00000000000000000002b139290c23781bb9faa7a11c7bc8a153a785b270c7f0 height=850716
2024-07-04T19:57:58Z Saw new cmpctblock header hash=00000000000000000002b139290c23781bb9faa7a11c7bc8a153a785b270c7f0 peer=14
2024-07-04T19:57:58Z UpdateTip: new best=00000000000000000002b139290c23781bb9faa7a11c7bc8a153a785b270c7f0 height=850716 version=0x24f00000 log2_work=95.020514 tx=1035152134 date='2024-07-04T19:58:55Z' progress=1.000000 cache=74.0MiB(555257txo)
2024-07-04T20:03:07Z Flushed fee estimates to fee_estimates.dat.
2024-07-04T20:16:57Z Saw new header hash=000000000000000000009c6a553d9c2f1e500b34fd4f9b52a1076f7c352ba901 height=850717
2024-07-04T20:16:57Z Saw new cmpctblock header hash=000000000000000000009c6a553d9c2f1e500b34fd4f9b52a1076f7c352ba901 peer=8
2024-07-04T20:16:57Z UpdateTip: new best=000000000000000000009c6a553d9c2f1e500b34fd4f9b52a1076f7c352ba901 height=850717 version=0x32dbc000 log2_work=95.020527 tx=1035155446 date='2024-07-04T20:16:34Z' progress=1.000000 cache=75.4MiB(568594txo)
newbie
Activity: 2
Merit: 1
BTC Core v .27 running on Mac os x.  Electrs cannot connect to the bitcoin node running on the same host.  Firewall is off.  I've tried rpcbind and rpcallowip for the localhost, with same error code.

Error: electrs failed
Caused by:
    0: bitcoin p2p failed to connect: 127.0.0.1:8333
    1: Connection refused (os error 61)


#btc.conf
[main]
server=1
prune=0
txindex=1
timeout=6000
walletbroadcast=0
blockfilterindex=1
datadir=/Users/xxx/Library/ApplicationSupport/Bitcoin
rpccookiefile=/Users/xxx/Library/ApplicationSupport/Bitcoin/.cookie


#Electrs command line

 ./target/release/electrs --log-filters=DEBUG --db-dir /Volumes/USB_3TB/db --daemon-dir ~/Library/ApplicationSupport/Bitcoin  --network=bitcoin
Starting electrs 0.10.5 on x86_64 macos with Config { network: Bitcoin, db_path: "/Volumes/USB_3TB/db/bitcoin", db_log_dir: None, daemon_dir: "/Users/xxx/Library/ApplicationSupport/Bitcoin", daemon_auth: CookieFile("/Users/xxx/Library/ApplicationSupport/Bitcoin/.cookie"), daemon_rpc_addr: 127.0.0.1:8332, daemon_p2p_addr: 127.0.0.1:8333, electrum_rpc_addr: 127.0.0.1:50001, monitoring_addr: 127.0.0.1:4224, wait_duration: 10s, jsonrpc_timeout: 15s, index_batch_size: 10, index_lookup_limit: None, reindex_last_blocks: 0, auto_reindex: true, ignore_mempool: false, sync_once: false, skip_block_download_wait: false, disable_electrum_rpc: false, server_banner: "Welcome to electrs 0.10.5 (Electrum Rust Server)!", signet_magic: f9beb4d9, args: [] }
[2024-07-04T19:48:57.591Z DEBUG tiny_http] Server listening on 127.0.0.1:4224
[2024-07-04T19:48:57.591Z INFO  electrs::metrics::metrics_impl] serving Prometheus metrics on 127.0.0.1:4224
[2024-07-04T19:48:57.591Z INFO  electrs::server] serving Electrum RPC on 127.0.0.1:50001
[2024-07-04T19:48:57.592Z DEBUG tiny_http] Running accept thread
[2024-07-04T19:49:00.094Z INFO  electrs::db] "/Volumes/USB_3TB/db/bitcoin": 203 SST files, 47.91021899 GB, 6.010814896 Grows
[2024-07-04T19:49:00.095Z DEBUG electrs::db] DB Some(Config { compacted: true, format: 0 })
[2024-07-04T19:49:00.170Z DEBUG electrs::db] auto-compactions enabled
[2024-07-04T19:49:02.341Z INFO  electrs::chain] loading 848545 headers, tip=00000000000000000002a2fab0d010ce270927e8c9a698a34f5e3d6c4dbcffd3
[2024-07-04T19:49:04.412Z INFO  electrs::chain] chain updated: tip=00000000000000000002a2fab0d010ce270927e8c9a698a34f5e3d6c4dbcffd3, height=848545
[2024-07-04T19:49:04.424Z DEBUG bitcoincore_rpc] JSON-RPC request: getblockchaininfo []
[2024-07-04T19:49:04.425Z DEBUG bitcoincore_rpc] JSON-RPC request: getnetworkinfo []
[2024-07-04T19:49:04.425Z DEBUG bitcoincore_rpc] JSON-RPC request: getnetworkinfo []
[2024-07-04T19:49:04.426Z DEBUG bitcoincore_rpc] JSON-RPC request: getblockchaininfo []
[2024-07-04T19:49:04.426Z DEBUG bitcoincore_rpc] JSON-RPC request: getnetworkinfo []
[2024-07-04T19:49:04.427Z INFO  electrs::db] closing DB at /Volumes/USB_3TB/db/bitcoin
Error: electrs failed

Caused by:
    0: bitcoin p2p failed to connect: 127.0.0.1:8333
    1: Connection refused (os error 61)


=====================


2024-07-04T19:03:05Z Ignoring unknown rw_settings value proxy-prev
2024-07-04T19:03:05Z Bitcoin Core version v27.0.0 (release build)
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -natpmp=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -discover=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -listenonion=0
2024-07-04T19:03:05Z InitParameterInteraction: parameter interaction: -listen=0 -> setting -i2pacceptincoming=0
2024-07-04T19:03:05Z Qt 5.15.11 (static), plugin=cocoa (static)
2024-07-04T19:03:05Z Static plugins:
2024-07-04T19:03:05Z  QCocoaIntegrationPlugin, version 331520
2024-07-04T19:03:05Z  QMacStylePlugin, version 331520
2024-07-04T19:03:05Z Style: macintosh / QMacStyle
2024-07-04T19:03:05Z System: macOS 11.7, x86_64-little_endian-lp64
2024-07-04T19:03:05Z Screen: Color LCD 1440x900, pixel ratio=2.0
2024-07-04T19:03:06Z GUI: Populating font family aliases took 469 ms. Replace uses of missing font family ".AppleSystemUIFont,13,-1,5,50,0,0,0,0,0" with one that exists to avoid this cost.
2024-07-04T19:03:06Z GUI: QFSFileEngine::open: No file name specified
2024-07-04T19:03:06Z GUI: QFSFileEngine::open: No file name specified
2024-07-04T19:03:06Z GUI: QFSFileEngine::open: No file name specified
2024-07-04T19:03:06Z GUI: QFSFileEngine::open: No file name specified
2024-07-04T19:03:06Z GUI: QFSFileEngine::open: No file name specified
2024-07-04T19:03:06Z Script verification uses 7 additional threads
2024-07-04T19:03:06Z Using the 'sse4(1way),sse41(4way),avx2(8way)' SHA256 implementation
2024-07-04T19:03:06Z Using RdRand as an additional entropy source
2024-07-04T19:03:06Z Default data directory /Users/xxx/Library/Application Support/Bitcoin
2024-07-04T19:03:06Z Using data directory /Users/xxx/Library/ApplicationSupport/Bitcoin
2024-07-04T19:03:06Z Config file: /Users/xxx/Library/Application Support/Bitcoin/bitcoin.conf
2024-07-04T19:03:06Z Config file arg: [main] blockfilterindex="1"
2024-07-04T19:03:06Z Config file arg: [main] datadir="/Users/xxx/Library/ApplicationSupport/Bitcoin"
2024-07-04T19:03:06Z Config file arg: [main] prune="0"
2024-07-04T19:03:06Z Config file arg: [main] rpccookiefile="/Users/xxx/Library/ApplicationSupport/Bitcoin/.cookie"
2024-07-04T19:03:06Z Config file arg: [main] server="1"
2024-07-04T19:03:06Z Config file arg: [main] timeout="6000"
2024-07-04T19:03:06Z Config file arg: [main] txindex="1"
2024-07-04T19:03:06Z Config file arg: [main] walletbroadcast="0"
2024-07-04T19:03:06Z Setting file arg: dbcache = "2400"
2024-07-04T19:03:06Z Setting file arg: listen = false
2024-07-04T19:03:06Z Setting file arg: proxy-prev = "127.0.0.1:9150"
2024-07-04T19:03:06Z Setting file arg: upnp = false
2024-07-04T19:03:06Z Setting file arg: wallet = ["","cormorant"]
2024-07-04T19:03:06Z Using at most 125 automatic connections (2560 file descriptors available)
2024-07-04T19:03:06Z Using 16 MiB out of 16 MiB requested for signature cache, able to store 524288 elements
2024-07-04T19:03:06Z Using 16 MiB out of 16 MiB requested for script execution cache, able to store 524288 elements
2024-07-04T19:03:06Z scheduler thread start
2024-07-04T19:03:06Z Binding RPC on address ::1 port 8332
2024-07-04T19:03:06Z Binding RPC on address 127.0.0.1 port 8332
2024-07-04T19:03:06Z Using random cookie authentication.
2024-07-04T19:03:06Z Generated RPC authentication cookie /Users/xxx/Library/ApplicationSupport/Bitcoin/.cookie
2024-07-04T19:03:06Z Starting HTTP server with 4 worker threads
2024-07-04T19:03:06Z Using wallet directory /Users/xxx/Library/ApplicationSupport/Bitcoin
2024-07-04T19:03:06Z init message: Verifying wallet(s)…
2024-07-04T19:03:06Z Using BerkeleyDB version Berkeley DB 4.8.30: (April  9, 2010)
2024-07-04T19:03:06Z Using wallet /Users/xxx/Library/ApplicationSupport/Bitcoin/wallet.dat
2024-07-04T19:03:06Z BerkeleyEnvironment::Open: LogDir=/Users/xxx/Library/ApplicationSupport/Bitcoin/database ErrorFile=/Users/xxx/Library/ApplicationSupport/Bitcoin/db.log
2024-07-04T19:03:06Z Using SQLite Version 3.38.5
2024-07-04T19:03:06Z Using wallet /Users/xxx/Library/ApplicationSupport/Bitcoin/cormorant
2024-07-04T19:03:06Z Using /16 prefix for IP bucketing
2024-07-04T19:03:06Z init message: Loading P2P addresses…
2024-07-04T19:03:07Z Loaded 72098 addresses from peers.dat  346ms
2024-07-04T19:03:07Z init message: Loading banlist…
2024-07-04T19:03:07Z SetNetworkActive: true
2024-07-04T19:03:07Z Script verification uses 7 additional threads
2024-07-04T19:03:07Z Cache configuration:
2024-07-04T19:03:07Z * Using 2.0 MiB for block index database
2024-07-04T19:03:07Z * Using 299.8 MiB for transaction index database
2024-07-04T19:03:07Z * Using 262.3 MiB for basic block filter index database
2024-07-04T19:03:07Z * Using 8.0 MiB for chain state database
2024-07-04T19:03:07Z * Using 1828.0 MiB for in-memory UTXO set (plus up to 286.1 MiB of unused mempool space)
2024-07-04T19:03:07Z init message: Loading block index…
2024-07-04T19:03:07Z Assuming ancestors of block 000000000000000000026811d149d4d261995ec5b3f64f439a0a10e1a464af9a have valid signatures.
2024-07-04T19:03:07Z Setting nMinimumChainWork=000000000000000000000000000000000000000063c4ebd298db40af57541800
2024-07-04T19:03:07Z Opening LevelDB in /Users/xxx/Library/ApplicationSupport/Bitcoin/blocks/index
2024-07-04T19:03:07Z Opened LevelDB successfully
2024-07-04T19:03:07Z Using obfuscation key for /Users/xxx/Library/ApplicationSupport/Bitcoin/blocks/index: 0000000000000000
2024-07-04T19:03:10Z LoadBlockIndexDB: last block file = 4368
2024-07-04T19:03:10Z LoadBlockIndexDB: last block file info: CBlockFileInfo(blocks=83, size=126744344, heights=850626...850708, time=2024-07-04...2024-07-04)
2024-07-04T19:03:10Z Checking all blk files are present...
2024-07-04T19:03:12Z Initializing chainstate Chainstate [ibd] @ height -1 (null)
2024-07-04T19:03:12Z Opening LevelDB in /Users/xxx/Library/ApplicationSupport/Bitcoin/chainstate
2024-07-04T19:03:12Z Opened LevelDB successfully
2024-07-04T19:03:12Z Using obfuscation key for /Users/xxx/Library/ApplicationSupport/Bitcoin/chainstate: cc15828a4afa3fb6
2024-07-04T19:03:12Z Loaded best chain: hashBestChain=00000000000000000002386e67e4874c48232530ddfb0b54f8abdde2c94fe24a height=850708 date=2024-07-04T18:50:53Z progress=0.999995
2024-07-04T19:03:12Z Opening LevelDB in /Users/xxx/Library/ApplicationSupport/Bitcoin/chainstate
2024-07-04T19:03:12Z Opened LevelDB successfully
2024-07-04T19:03:12Z Using obfuscation key for /Users/xxx/Library/ApplicationSupport/Bitcoin/chainstate: cc15828a4afa3fb6
2024-07-04T19:03:12Z [Chainstate [ibd] @ height 850708 (00000000000000000002386e67e4874c48232530ddfb0b54f8abdde2c94fe24a)] resized coinsdb cache to 8.0 MiB
2024-07-04T19:03:12Z [Chainstate [ibd] @ height 850708 (00000000000000000002386e67e4874c48232530ddfb0b54f8abdde2c94fe24a)] resized coinstip cache to 1828.0 MiB
2024-07-04T19:03:12Z init message: Verifying blocks…
2024-07-04T19:03:12Z Verifying last 6 blocks at level 3
2024-07-04T19:03:12Z Verification progress: 0%
2024-07-04T19:03:14Z Verification progress: 16%
2024-07-04T19:03:15Z Verification progress: 33%
2024-07-04T19:03:15Z Verification progress: 50%
2024-07-04T19:03:16Z Verification progress: 66%
2024-07-04T19:03:16Z Verification progress: 83%
2024-07-04T19:03:17Z Verification progress: 99%
2024-07-04T19:03:17Z Verification: No coin database inconsistencies in last 6 blocks (19651 transactions)
2024-07-04T19:03:17Z  block index           10064ms
2024-07-04T19:03:17Z Opening LevelDB in /Users/xxx/Library/ApplicationSupport/Bitcoin/indexes/txindex
2024-07-04T19:03:17Z Opened LevelDB successfully
2024-07-04T19:03:17Z Using obfuscation key for /Users/xxx/Library/ApplicationSupport/Bitcoin/indexes/txindex: 0000000000000000
2024-07-04T19:03:17Z Opening LevelDB in /Users/xxx/Library/ApplicationSupport/Bitcoin/indexes/blockfilter/basic/db
2024-07-04T19:03:17Z Opened LevelDB successfully
2024-07-04T19:03:17Z Using obfuscation key for /Users/xxx/Library/ApplicationSupport/Bitcoin/indexes/blockfilter/basic/db: 0000000000000000
2024-07-04T19:03:17Z init message: Loading wallet…
2024-07-04T19:03:17Z BerkeleyEnvironment::Open: LogDir=/Users/xxx/Library/ApplicationSupport/Bitcoin/database ErrorFile=/Users/xxx/Library/ApplicationSupport/Bitcoin/db.log
2024-07-04T19:03:17Z [default wallet] Wallet file version = 10500, last client version = 270000
2024-07-04T19:03:17Z [default wallet] Legacy Wallet Keys: 2001 plaintext, 0 encrypted, 2001 w/ metadata, 2001 total.
2024-07-04T19:03:17Z [default wallet] Descriptors: 0, Descriptor Keys: 0 plaintext, 0 encrypted, 0 total.
2024-07-04T19:03:17Z [default wallet] Wallet completed loading in             128ms
2024-07-04T19:03:17Z [default wallet] setKeyPool.size() = 2000
2024-07-04T19:03:17Z [default wallet] mapWallet.size() = 58
2024-07-04T19:03:17Z [default wallet] m_address_book.size() = 6000
2024-07-04T19:03:17Z Using SQLite Version 3.38.5
2024-07-04T19:03:17Z Using wallet /Users/xxx/Library/ApplicationSupport/Bitcoin/cormorant
2024-07-04T19:03:17Z init message: Loading wallet…
2024-07-04T19:03:17Z [cormorant] Wallet file version = 10500, last client version = 270000
2024-07-04T19:03:17Z [cormorant] Descriptors: 7, Descriptor Keys: 0 plaintext, 0 encrypted, 0 total.
2024-07-04T19:03:17Z [cormorant] Setting spkMan to active: id = 9539d81b48db2e23376356eb0fce934f2de7e22ddc4553c1b7dd71e1d48bd62e, type = legacy, internal = false
2024-07-04T19:03:17Z [cormorant] Setting spkMan to active: id = 40e7175e066b6d455718e32e5aff87d7bd865e74d3bcb98f43a5c0d162343106, type = bech32, internal = false
2024-07-04T19:03:17Z [cormorant] Wallet completed loading in             309ms
2024-07-04T19:03:17Z [cormorant] setKeyPool.size() = 2001
2024-07-04T19:03:17Z [cormorant] mapWallet.size() = 61
2024-07-04T19:03:17Z [cormorant] m_address_book.size() = 47
2024-07-04T19:03:17Z Setting NODE_NETWORK on non-prune mode
2024-07-04T19:03:17Z block tree size = 850717
2024-07-04T19:03:17Z nBestHeight = 850708
2024-07-04T19:03:17Z initload thread start
2024-07-04T19:03:17Z txindex thread start
2024-07-04T19:03:17Z Loaded 2 addresses from "anchors.dat"
2024-07-04T19:03:17Z Loading 89601 mempool transactions from disk...
2024-07-04T19:03:17Z basic block filter index thread start
2024-07-04T19:03:17Z basic block filter index is enabled at height 850708
2024-07-04T19:03:17Z basic block filter index thread exit
2024-07-04T19:03:17Z txindex is enabled at height 850708
2024-07-04T19:03:17Z txindex thread exit
2024-07-04T19:03:17Z 2 block-relay-only anchors will be tried for connections.
2024-07-04T19:03:17Z init message: Starting network threads…
2024-07-04T19:03:17Z Leaving InitialBlockDownload (latching to false)
2024-07-04T19:03:17Z dnsseed thread start
2024-07-04T19:03:17Z msghand thread start
2024-07-04T19:03:17Z init message: Done loading
2024-07-04T19:03:17Z opencon thread start
2024-07-04T19:03:17Z addcon thread start
2024-07-04T19:03:17Z net thread start
2024-07-04T19:03:17Z Waiting 300 seconds before querying DNS seeds.
2024-07-04T19:03:17Z GUI: Platform customization: "macosx"
2024-07-04T19:03:18Z New block-relay-only v1 peer connected: version: 70016, blocks=850708, peer=0
2024-07-04T19:03:19Z New block-relay-only v2 peer connected: version: 70016, blocks=850708, peer=1
2024-07-04T19:03:28Z New outbound-full-relay v1 peer connected: version: 70016, blocks=850708, peer=3
2024-07-04T19:03:35Z New outbound-full-relay v2 peer connected: version: 70016, blocks=850708, peer=4
2024-07-04T19:03:39Z P2P peers available. Skipped DNS seeding.
2024-07-04T19:03:39Z dnsseed thread exit
2024-07-04T19:03:40Z New outbound-full-relay v2 peer connected: version: 70016, blocks=850708, peer=8
2024-07-04T19:03:55Z New outbound-full-relay v1 peer connected: version: 70016, blocks=850708, peer=12
2024-07-04T19:04:23Z New outbound-full-relay v1 peer connected: version: 70016, blocks=850708, peer=14
2024-07-04T19:04:25Z New outbound-full-relay v2 peer connected: version: 70016, blocks=850708, peer=16
2024-07-04T19:04:26Z Progress loading mempool transactions from disk: 10% (tried 8961, 80640 remaining)
2024-07-04T19:04:52Z New outbound-full-relay v2 peer connected: version: 70016, blocks=850708, peer=17
2024-07-04T19:04:52Z New block-relay-only v1 peer connected: version: 70016, blocks=850708, peer=18
2024-07-04T19:05:16Z New outbound-full-relay v1 peer connected: version: 70015, blocks=850708, peer=20
2024-07-04T19:05:35Z New outbound-full-relay v1 peer connected: version: 70016, blocks=850708, peer=21
2024-07-04T19:05:39Z Progress loading mempool transactions from disk: 20% (tried 17921, 71680 remaining)
2024-07-04T19:08:23Z Progress loading mempool transactions from disk: 30% (tried 26881, 62720 remaining)
2024-07-04T19:11:49Z Saw new header hash=00000000000000000001d4c9c08d10ba93443e29aa2714e3e701a2fdc234f970 height=850709
2024-07-04T19:11:55Z UpdateTip: new best=00000000000000000001d4c9c08d10ba93443e29aa2714e3e701a2fdc234f970 height=850709 version=0x20800000 log2_work=95.020424 tx=1035126564 date='2024-07-04T19:11:18Z' progress=1.000000 cache=59.8MiB(446059txo)
2024-07-04T19:12:32Z Progress loading mempool transactions from disk: 40% (tried 35841, 53760 remaining)
2024-07-04T19:12:44Z Progress loading mempool transactions from disk: 50% (tried 44801, 44800 remaining)
2024-07-04T19:12:46Z Progress loading mempool transactions from disk: 60% (tried 53761, 35840 remaining)
2024-07-04T19:12:47Z Progress loading mempool transactions from disk: 70% (tried 62721, 26880 remaining)
2024-07-04T19:12:49Z Progress loading mempool transactions from disk: 80% (tried 71681, 17920 remaining)
2024-07-04T19:12:50Z Progress loading mempool transactions from disk: 90% (tried 80641, 8960 remaining)
2024-07-04T19:12:52Z Imported mempool transactions from disk: 88562 succeeded, 891 failed, 0 expired, 148 already there, 0 waiting for initial broadcast
2024-07-04T19:12:52Z initload thread exit
2024-07-04T19:13:08Z Saw new header hash=00000000000000000002da7d3cf3aa3f8197748e96d958e77d15fee02cc34b56 height=850710
2024-07-04T19:13:10Z UpdateTip: new best=00000000000000000002da7d3cf3aa3f8197748e96d958e77d15fee02cc34b56 height=850710 version=0x24326000 log2_work=95.020437 tx=1035132606 date='2024-07-04T19:12:39Z' progress=1.000000 cache=69.8MiB(517582txo)
2024-07-04T19:16:08Z Saw new header hash=0000000000000000000352b386819edcb7611b1f5767630378f644918b631490 height=850711
2024-07-04T19:16:08Z Saw new cmpctblock header hash=0000000000000000000352b386819edcb7611b1f5767630378f644918b631490 peer=14
2024-07-04T19:16:10Z UpdateTip: new best=0000000000000000000352b386819edcb7611b1f5767630378f644918b631490 height=850711 version=0x215d2000 log2_work=95.020449 tx=1035136175 date='2024-07-04T19:15:27Z' progress=1.000000 cache=70.1MiB(520873txo)
2024-07-04T19:24:17Z Saw new header hash=0000000000000000000174ed03b10bddcd47e36e74883b222381eb3686129fc3 height=850712
2024-07-04T19:24:17Z Saw new cmpctblock header hash=0000000000000000000174ed03b10bddcd47e36e74883b222381eb3686129fc3 peer=14
2024-07-04T19:24:30Z UpdateTip: new best=0000000000000000000174ed03b10bddcd47e36e74883b222381eb3686129fc3 height=850712 version=0x2b558000 log2_work=95.020462 tx=1035139551 date='2024-07-04T19:24:28Z' progress=1.000000 cache=70.9MiB(527921txo)
2024-07-04T19:36:45Z Saw new header hash=0000000000000000000060f2bf74044d393ef471c63ffd3e5ccdb0ec4c953271 height=850713
2024-07-04T19:36:45Z Saw new cmpctblock header hash=0000000000000000000060f2bf74044d393ef471c63ffd3e5ccdb0ec4c953271 peer=14
2024-07-04T19:36:45Z UpdateTip: new best=0000000000000000000060f2bf74044d393ef471c63ffd3e5ccdb0ec4c953271 height=850713 version=0x2f3b8000 log2_work=95.020475 tx=1035143772 date='2024-07-04T19:36:20Z' progress=1.000000 cache=72.2MiB(538425txo)
2024-07-04T19:38:34Z New block-relay-only v1 peer connected: version: 70016, blocks=850713, peer=23
2024-07-04T19:39:27Z Saw new header hash=0000000000000000000227f6a930ff2403ab7fd8a15ce00422b3df0c3ed911a8 height=850714
2024-07-04T19:39:27Z UpdateTip: new best=0000000000000000000227f6a930ff2403ab7fd8a15ce00422b3df0c3ed911a8 height=850714 version=0x20002000 log2_work=95.020488 tx=1035146156 date='2024-07-04T19:38:54Z' progress=1.000000 cache=72.5MiB(540698txo)
2024-07-04T19:46:02Z Saw new header hash=000000000000000000022a832ade79443afb8061b6c8f2e851c8603cc672b60f height=850715
2024-07-04T19:46:02Z UpdateTip: new best=000000000000000000022a832ade79443afb8061b6c8f2e851c8603cc672b60f height=850715 version=0x24c40000 log2_work=95.020501 tx=1035148598 date='2024-07-04T19:45:48Z' progress=1.000000 cache=73.0MiB(545431txo)
2024-07-04T19:57:12Z New outbound-full-relay v1 peer connected: version: 70015, blocks=850715, peer=25
2024-07-04T19:57:58Z Saw new header hash=00000000000000000002b139290c23781bb9faa7a11c7bc8a153a785b270c7f0 height=850716
2024-07-04T19:57:58Z Saw new cmpctblock header hash=00000000000000000002b139290c23781bb9faa7a11c7bc8a153a785b270c7f0 peer=14
2024-07-04T19:57:58Z UpdateTip: new best=00000000000000000002b139290c23781bb9faa7a11c7bc8a153a785b270c7f0 height=850716 version=0x24f00000 log2_work=95.020514 tx=1035152134 date='2024-07-04T19:58:55Z' progress=1.000000 cache=74.0MiB(555257txo)
2024-07-04T20:03:07Z Flushed fee estimates to fee_estimates.dat.
2024-07-04T20:16:57Z Saw new header hash=000000000000000000009c6a553d9c2f1e500b34fd4f9b52a1076f7c352ba901 height=850717
2024-07-04T20:16:57Z Saw new cmpctblock header hash=000000000000000000009c6a553d9c2f1e500b34fd4f9b52a1076f7c352ba901 peer=8
2024-07-04T20:16:57Z UpdateTip: new best=000000000000000000009c6a553d9c2f1e500b34fd4f9b52a1076f7c352ba901 height=850717 version=0x32dbc000 log2_work=95.020527 tx=1035155446 date='2024-07-04T20:16:34Z' progress=1.000000 cache=75.4MiB(568594txo)
Jump to: