Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

[bug]: lncli getinfo indicates "synced_to_chain: false" despite logs showing "Chain backend is fully synced" #9081

Open
Dominion5254 opened this issue Sep 10, 2024 · 24 comments
Labels
bug Unintended code behaviour needs triage

Comments

@Dominion5254
Copy link

Background

Reporting behavior described by @chrisguida here.
lncli getinfo return value indicates "synced_to_chain": false - despite the logs indicating "Chain backend is fully synced".

Logs:

2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.173 [INF] LNWL: Started rescan from block 00000000000000000001e49e5678118a46d43055ebfcd493249da9cf8a2a2f81 (height 860066) for 27726 addresses
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.285 [INF] LNWL: Catching up block hashes to height 860066, this might take a while
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.293 [INF] LNWL: Done catching up block hashes
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.293 [INF] LNWL: Finished rescan for 27726 addresses (synced to block 00000000000000000001e49e5678118a46d43055ebfcd493249da9cf8a2a2f81, height 860066)
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.386 [INF] LTND: Chain backend is fully synced (end_height=860066)!
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.386 [INF] NANN: HostAnnouncer starting
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.386 [WRN] HLCK: check: disk space configured with 0 attempts, skipping it
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.386 [WRN] HLCK: check: tls configured with 0 attempts, skipping it
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.386 [INF] LNWL: SigPool starting
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.389 [INF] NTFN: New block epoch subscription
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.389 [INF] NTFN: New block epoch subscription
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.389 [INF] CHNF: ChannelNotifier starting
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.389 [INF] PRNF: PeerNotifier starting
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.389 [INF] BTCN: Broadcaster now active
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.389 [INF] HSWC: HtlcNotifier starting
2024-09-05T18:24:10-06:00  2024-09-06 00:24:10.389 [INF] NTFN: New block epoch subscription

Your environment

  • LND 0.18.0 running on StartOS 0.3.5~1
  • bitcoind backend (fully synced)

Steps to reproduce

Behavior can't seem to be reproduced aside from the user in question. But for the user in question, the behavior persists across restarts of lnd.

Expected behaviour

If the logs are indicating "Chain backend is fully synced', lncli getinfo requests should show synced_to_chain as true.

Actual behaviour

Despite the logs indicating "Chain backend is fully synced', lncli getinfo requests indefinitely continue to show synced_to_chain as false.

@Dominion5254 Dominion5254 added bug Unintended code behaviour needs triage labels Sep 10, 2024
@ziggie1984
Copy link
Collaborator

This can easily be possible. The log entry just confirms that the sync was true when starting up lnd, however this can change during operation. Can you provide your lncli getinfo output especially for:

    "block_height": 860983,
    "block_hash": "000000000000000000020bd8864ba9f95d91e115ab83717b74494a3e4bf3deae",
    "best_header_timestamp": "1726131695",

@chrisguida
Copy link

It's definitely staying synced to tip

Screenshot 2024-09-12 at 10 08 21
    "num_pending_channels":  0,
    "num_active_channels":  0,
    "num_inactive_channels":  1,
    "num_peers":  0,
    "block_height":  861031,
    "block_hash":  "000000000000000000016a449be0aea93340660276ff4e52b0df6dea7336af5f",
    "best_header_timestamp":  "1726157341",
    "synced_to_chain":  false,
    "synced_to_graph":  false,
    "testnet":  false,
    "chains":  [
        {
            "chain":  "bitcoin",
            "network":  "mainnet"
        }
    ],

@guggero
Copy link
Collaborator

guggero commented Sep 12, 2024

Might want to check your ZMQ settings.

@chrisguida
Copy link

What am I looking for?

lnd.conf:

# cat .lnd/lnd.conf | grep zmq
bitcoind.zmqpubrawblock=tcp://bitcoind.embassy:28332
bitcoind.zmqpubrawtx=tcp://bitcoind.embassy:28333

bitcoin.conf:

## ZERO MQ
zmqpubrawblock=tcp://0.0.0.0:28332
zmqpubhashblock=tcp://0.0.0.0:28332
zmqpubrawtx=tcp://0.0.0.0:28333
zmqpubhashtx=tcp://0.0.0.0:28333
zmqpubsequence=tcp://0.0.0.0:28333

@guggero
Copy link
Collaborator

guggero commented Sep 12, 2024

I'd try removing the types lnd doesn't need (and possibly doesn't understand):

zmqpubhashblock=tcp://0.0.0.0:28332
zmqpubhashtx=tcp://0.0.0.0:28333
zmqpubsequence=tcp://0.0.0.0:28333

@chrisguida
Copy link

Those are needed for other services, I can't remove them

@chrisguida
Copy link

I can temporarily disable, but this is a bug if the solution is to turn them off

@chrisguida
Copy link

Anyway those settings have been active on Start9 for a couple of years at least, I doubt that's the issue. Discussing with @Dominion5254 how to turn three of these off while leaving the other two on

@Dominion5254
Copy link
Author

I'd try removing the types lnd doesn't need (and possibly doesn't understand):

zmqpubhashblock=tcp://0.0.0.0:28332
zmqpubhashtx=tcp://0.0.0.0:28333
zmqpubsequence=tcp://0.0.0.0:28333

This seems like a red herring. Every single lnd-startos user has these same config options set in their Bitcoin Core config - But aside from Chris's case, this particular issue has never come up before.

Is there anything else that could explain this behavior?

@guggero
Copy link
Collaborator

guggero commented Sep 12, 2024

Okay, was just a hunch.

@bitromortac
Copy link
Collaborator

Does it still report as not being synced? Are there any changes to bitcoin.conf or lnd.conf compared to the original configuration?

@ziggie1984
Copy link
Collaborator

Can you also verify you are not doing a wallet rescan by accident, because LND will not report sync_to_chain=true, in case your walllet is not caught up with the current chain.

@chrisguida
Copy link

@bitromortac yes it's still stuck in not synced to chain and not synced to graph, but the log still indicates that it's indeed synced to the tip

What is the "original configuration"? This is the Start9 LND package and I've had this node for a while as a test node, but I don't think it's much different from the default Start9 config.

Here it is in case that helps:

$ cat /embassy-data/package-data/volumes/lnd/data/main/lnd.conf 
[Application Options]
externalhosts=[redacted]
payments-expiration-grace-period=30s
listen=0.0.0.0:9735
rpclisten=172.18.0.31:10009
restlisten=172.18.0.31:8080
rpcmiddleware.enable=true
debuglevel=info


default-remote-max-htlcs=483
rejecthtlc=false
max-channel-fee-allocation=0.5
maxpendingchannels=5
max-commit-fee-rate-anchors=100
accept-keysend=true
accept-amp=false
gc-canceled-invoices-on-startup=false
allow-circular-route=false
alias=[redacted]
color=[redacted]


[Bitcoin]
bitcoin.active=true
bitcoin.mainnet=true
bitcoin.node=bitcoind
bitcoin.defaultchanconfs=3
bitcoin.minhtlc=1
bitcoin.minhtlcout=1000
bitcoin.basefee=1000
bitcoin.feerate=1
bitcoin.timelockdelta=40

[Bitcoind]
bitcoind.rpchost=bitcoind.embassy:8332
bitcoind.rpcuser=[redacted]
bitcoind.rpcpass=[redacted]
bitcoind.zmqpubrawblock=tcp://bitcoind.embassy:28332
bitcoind.zmqpubrawtx=tcp://bitcoind.embassy:28333

[autopilot]
autopilot.active=false
autopilot.maxchannels=5
autopilot.allocation=0.6
autopilot.minchansize=20000
autopilot.maxchansize=16777215
autopilot.private=false
autopilot.minconfs=1
autopilot.conftarget=1

[tor]
tor.active=true
tor.socks=embassy:9050
tor.skip-proxy-for-clearnet-targets=true
tor.streamisolation=false

[watchtower]
watchtower.active=true
watchtower.listen=0.0.0.0:9911
watchtower.externalip=[redacted]

[wtclient]
wtclient.active=true

[healthcheck]
healthcheck.chainbackend.attempts=5

[protocol]
protocol.wumbo-channels=false
protocol.no-anchors=false
protocol.no-script-enforced-lease=false
protocol.option-scid-alias=false
protocol.zero-conf=false
protocol.simple-taproot-chans=false

[sweeper]
sweeper.maxfeerate=1000
sweeper.nodeadlineconftarget=1008
sweeper.budget.tolocalratio=0.5
sweeper.budget.anchorcpfpratio=0.5
sweeper.budget.deadlinehtlcratio=0.5
sweeper.budget.nodeadlinehtlcratio=0.5

[bolt]
db.bolt.nofreelistsync=false
db.bolt.auto-compact=true
db.bolt.auto-compact-min-age=168h
db.bolt.dbtimeout=60s

@chrisguida
Copy link

@ziggie1984 I'm not sure how I would accidentally trigger a rescan; I definitely didn't do this intentionally but @Dominion5254 would have more info on whether Start9 triggers this in certain cases.

I can try a rescan if you think that would help.

@bitromortac
Copy link
Collaborator

Thanks for the config, there are two subsystems that are checked for onchain synchronization, the wallet and the graph builder. Could you post some logs from the wallet and graph systems, by setting lncli debuglevel --level=GRPH=debug,LNWL=debug for a period of some blocks? In the past there were some problems with graph syncing, so perhaps we have to create a profile/goroutine dump.

@chrisguida
Copy link

@bitromortac

# lncli --rpcserver lnd.embassy debuglevel --level=GRPH=debug,LNWL=debug
[lncli] rpc error: code = Unknown desc = the specified subsystem [GRPH] is invalid -- supported subsystems are [ARPC ATPL BRAR BTCN BTWL CHAC CHBU CHCL CHDB CHFD CHFT CHNF CHRE CLUS CMGR CNCT CRTR DISC DRPC FNDG HLCK HSWC INVC IRPC LNWL LTND NANN NRPC NTFN NTFR PEER PRNF PROM PRPC RPCP RPCS RPWL RRPC SGNR SPHX SRVR SWPR TORC UTXN VRPC WLKT WTCL WTWR]

@bitromortac
Copy link
Collaborator

bitromortac commented Sep 18, 2024

Ah right, the graph refactor is not in 0.18.0, lncli --rpcserver lnd.embassy debuglevel --level=CRTR=debug,LNWL=debug would be correct (this will be more verbose).

@chrisguida
Copy link

chrisguida commented Sep 19, 2024

cool, guess i'll see if anything comes out

2024-09-19 03:57:42.143 [INF] RPCS: [debuglevel] changing debug level to: CRTR=debug,LNWL=debug

That's a very neat feature, rpc command to change logging levels

@chrisguida
Copy link

Just a lot of this so far. Anything in particular I should be looking for?

2024-09-16T23:45:25-06:00  2024-09-17 05:45:25.129 [INF] NTFN: New block: height=861651, sha=00000000000000000000aef2aad8797ecdd0e9220778b7a3aa916f8d5acb97cc
2024-09-16T23:45:55-06:00  2024-09-17 05:45:55.284 [INF] NTFN: New block: height=861652, sha=00000000000000000001dcb2931f68fedd0b67c65bb83609e0c4804704a5f703
2024-09-16T23:51:27-06:00  2024-09-17 05:51:27.967 [INF] NTFN: New block: height=861653, sha=000000000000000000001ed90dd3d5d89f5be49b2a2631f381f7757e0a60bf0b
2024-09-17T00:04:53-06:00  2024-09-17 06:04:53.795 [INF] NTFN: New block: height=861654, sha=00000000000000000002881445973983fc84fd39212968decfb68213d52622be
2024-09-17T00:26:00-06:00  2024-09-17 06:26:00.991 [INF] NTFN: New block: height=861655, sha=00000000000000000000a06d86348a07928b2a1c5a9d56387895ed22e3e346fa
2024-09-17T00:45:07-06:00  2024-09-17 06:45:07.426 [INF] NTFN: New block: height=861656, sha=00000000000000000000cfe2ac1697f21f0a97e6057a5c0ce8affdd5195d4d5a
2024-09-17T00:50:57-06:00  2024-09-17 06:50:57.984 [INF] NTFN: New block: height=861657, sha=00000000000000000002412ba2c5588e5e983c2a620a8724a937ebe103e9db1f
2024-09-17T01:04:06-06:00  2024-09-17 07:04:06.067 [INF] NTFN: New block: height=861658, sha=000000000000000000027e41d9e773b38997e7991df934eecf17142b8c50b93c
2024-09-17T01:24:35-06:00  2024-09-17 07:24:35.058 [INF] NTFN: New block: height=861659, sha=0000000000000000000299addb1db905c33dc4bed4779579334970e85948292b
2024-09-17T01:28:43-06:00  2024-09-17 07:28:43.860 [INF] NTFN: New block: height=861660, sha=00000000000000000000876a9714344ae5cd9ef1c2771cace672c28115e8f05c
2024-09-17T01:29:45-06:00  2024-09-17 07:29:45.847 [INF] NTFN: New block: height=861661, sha=0000000000000000000108dbbe49e704544b8f33eb42bd2c29f48773bb89d59a
2024-09-17T01:30:15-06:00  2024-09-17 07:30:15.842 [INF] NTFN: New block: height=861662, sha=000000000000000000004fe256d2fb16e2b062e436ee3e36fcb914b84777d6d6
2024-09-17T01:37:58-06:00  2024-09-17 07:37:58.600 [INF] NTFN: New block: height=861663, sha=00000000000000000001e1cff07950d559b70aae2840f8e9be7f8c8a0096cc70
2024-09-17T01:42:22-06:00  2024-09-17 07:42:22.079 [INF] NTFN: New block: height=861664, sha=00000000000000000001969a65cb43e9ab94de3c50a8e3975f35713ed72b0394
2024-09-17T01:58:42-06:00  2024-09-17 07:58:42.109 [INF] NTFN: New block: height=861665, sha=000000000000000000004b403b063f0ab82cef33a322456a058d5dcdd87eb4c7
2024-09-17T02:02:14-06:00  2024-09-17 08:02:14.931 [INF] NTFN: New block: height=861666, sha=00000000000000000000e494df13abf0de1c28b79baf4d0846de2a0d7754b997
2024-09-17T02:02:19-06:00  2024-09-17 08:02:19.784 [INF] NTFN: New block: height=861667, sha=00000000000000000000af2b3bd8c2fb38833c63281f502b8c6224df212d68d9
2024-09-17T02:15:00-06:00  2024-09-17 08:15:00.409 [INF] NTFN: New block: height=861668, sha=0000000000000000000245ff3097b3de226d116bf150ad694cedb361a0b3cdee
2024-09-17T02:19:37-06:00  2024-09-17 08:19:37.057 [INF] NTFN: New block: height=861669, sha=000000000000000000006a72c85f0625a3cfbcc90c2a9ca201b4fcd233d0ffc4
2024-09-17T02:23:21-06:00  2024-09-17 08:23:21.935 [INF] NTFN: New block: height=861670, sha=000000000000000000007febee7a133194d62733c7c59c6326a4ae6c322a7e9d
2024-09-17T02:54:49-06:00  2024-09-17 08:54:49.910 [INF] NTFN: New block: height=861671, sha=00000000000000000001b5ffb177a73964edb68d799a62b010abddefa31db492
2024-09-17T02:59:04-06:00  2024-09-17 08:59:04.486 [INF] NTFN: New block: height=861672, sha=000000000000000000002f4bbfec09e13aea877019d25e8f75e007409fe34742
2024-09-17T03:00:03-06:00  2024-09-17 09:00:03.686 [INF] NTFN: New block: height=861673, sha=00000000000000000000f85993ea6d6a9e15950bf262129a3660268908b9a713
2024-09-17T03:07:13-06:00  2024-09-17 09:07:13.178 [INF] NTFN: New block: height=861674, sha=00000000000000000000d8f4f84325a4045bc5ed4959db4f275402637a60e02b
2024-09-17T03:10:34-06:00  2024-09-17 09:10:34.146 [INF] NTFN: New block: height=861675, sha=000000000000000000002530f52ce2461f24e2dadfc25ca1b14cfaff8bb40147
2024-09-17T03:21:11-06:00  2024-09-17 09:21:11.857 [INF] NTFN: New block: height=861676, sha=000000000000000000014849b896d29853f5452e14cc3df3b0a53299d8f89904
2024-09-17T03:26:33-06:00  2024-09-17 09:26:33.086 [INF] NTFN: New block: height=861677, sha=00000000000000000001a927aac1087bd32a8a1be5dc9bc70a40284e60ff1574
2024-09-17T03:28:13-06:00  2024-09-17 09:28:13.168 [INF] NTFN: New block: height=861678, sha=0000000000000000000180d9372bbca38cfe543235118190d03f129e872761a8
2024-09-17T03:31:10-06:00  2024-09-17 09:31:10.360 [INF] NTFN: New block: height=861679, sha=000000000000000000012168b5c2d604c7f6591806a909d24813426b734516dd
2024-09-17T04:01:15-06:00  2024-09-17 10:01:15.860 [INF] NTFN: New block: height=861680, sha=0000000000000000000095f65cae538d516d40320b923f8e26b439f989f1519c
2024-09-17T04:01:31-06:00  2024-09-17 10:01:31.413 [INF] NTFN: New block: height=861681, sha=000000000000000000019f07c064305e8b8f988cce2a8575a28122f01af3b77a
2024-09-17T04:17:34-06:00  2024-09-17 10:17:34.899 [INF] NTFN: New block: height=861682, sha=0000000000000000000045b454440cbf8da328312170cf439b4f3fa713db8824
2024-09-17T04:22:28-06:00  2024-09-17 10:22:28.416 [INF] NTFN: New block: height=861683, sha=0000000000000000000075f144850f1a618d3a0c62d4b6e2850bbccee5d88d83
2024-09-17T04:30:38-06:00  2024-09-17 10:30:38.844 [INF] NTFN: New block: height=861684, sha=00000000000000000001252e94197efb1f8574f8c6e7a1351b18ba9393072a78
2024-09-17T04:51:21-06:00  2024-09-17 10:51:21.810 [INF] NTFN: New block: height=861685, sha=000000000000000000027c1b868de711e94ba86623b1e49a64344855d442e568
2024-09-17T04:58:45-06:00  2024-09-17 10:58:45.992 [INF] NTFN: New block: height=861686, sha=000000000000000000008ebf6c1f4ceb9539bfcbd18cdb366fa407277d91a9b7
2024-09-17T05:26:58-06:00  2024-09-17 11:26:58.640 [INF] NTFN: New block: height=861687, sha=00000000000000000000fde077ede6f8ea5b0b03631eb7467bd344808998dced
2024-09-17T05:30:48-06:00  2024-09-17 11:30:48.715 [INF] NTFN: New block: height=861688, sha=0000000000000000000246da5570462513b036c1b1fbcdda0fa0dfc7ff3c4756
2024-09-17T05:36:22-06:00  2024-09-17 11:36:22.991 [INF] NTFN: New block: height=861689, sha=00000000000000000002fe47ddab58bdb86de6491c3c2ac4632f289f7a6e67a1
2024-09-17T05:39:53-06:00  2024-09-17 11:39:53.263 [INF] NTFN: New block: height=861690, sha=0000000000000000000114fdb10e549629085de92bb116a2d5b10398ed72a9d2
2024-09-17T06:08:41-06:00  2024-09-17 12:08:41.432 [INF] NTFN: New block: height=861691, sha=000000000000000000017e255ab7eddc8cb9cf49083f9951313661532de1680c
2024-09-17T06:18:45-06:00  2024-09-17 12:18:45.087 [INF] NTFN: New block: height=861692, sha=000000000000000000026f58cd33130c2894324b93beae53b94705857964901c
2024-09-17T06:24:46-06:00  2024-09-17 12:24:46.821 [INF] NTFN: New block: height=861693, sha=00000000000000000000368c85cc7810601c2536deda944fa8d2b8712faeac61
2024-09-17T06:32:03-06:00  2024-09-17 12:32:03.104 [INF] NTFN: New block: height=861694, sha=00000000000000000001f9bfb7c97ba10fc5432491a66c0569a895aecd9ae8cb
2024-09-17T06:38:01-06:00  2024-09-17 12:38:01.212 [INF] NTFN: New block: height=861695, sha=00000000000000000000b3fc141d821e49c96630373d186f4903d1feb632cc3a
2024-09-17T06:54:53-06:00  2024-09-17 12:54:53.224 [INF] NTFN: New block: height=861696, sha=00000000000000000000d426f692e147b5a948e205bb964e3f4eaf7f9c994bf5
2024-09-17T06:56:02-06:00  2024-09-17 12:56:02.704 [INF] NTFN: New block: height=861697, sha=0000000000000000000026f410a5f95cb875a77d348e8cae8f4850320d416a11
2024-09-17T07:11:51-06:00  2024-09-17 13:11:51.116 [INF] NTFN: New block: height=861698, sha=000000000000000000018f8d9b6aa677de1e9df2f1a845c05a5b88f59cec70fb
2024-09-17T07:21:16-06:00  2024-09-17 13:21:16.447 [INF] NTFN: New block: height=861699, sha=00000000000000000000d0f76b3e81d58227ccaa0a81302ca449383bd93b2efe
2024-09-17T07:27:31-06:00  2024-09-17 13:27:31.132 [INF] NTFN: New block: height=861700, sha=00000000000000000002c2da56f43d03fa0d2c4c2851fad14948e9fc0ed08843
2024-09-17T07:35:53-06:00  2024-09-17 13:35:53.485 [INF] NTFN: New block: height=861701, sha=00000000000000000000688271f8f50641c7f0f2fad8a6a9989d8d1950e9da32
2024-09-17T07:45:49-06:00  2024-09-17 13:45:49.261 [INF] NTFN: New block: height=861702, sha=00000000000000000000c1ebea31ab972c195b1296ebe84edb482dd79ffae693
2024-09-17T07:55:11-06:00  2024-09-17 13:55:11.816 [INF] NTFN: New block: height=861703, sha=000000000000000000027046fee8e5801a9b0779020061d633af3a1bb8d19a7b
2024-09-17T07:56:51-06:00  2024-09-17 13:56:51.563 [INF] NTFN: New block: height=861704, sha=00000000000000000002b6b036af728499fcc48a81f6c3f473bfefc43175702c
2024-09-17T07:57:49-06:00  2024-09-17 13:57:49.155 [INF] NTFN: New block: height=861705, sha=000000000000000000012ea104d8e1fa0903d05bcc6489c56d79751c8a2e5ef6
2024-09-17T07:59:07-06:00  2024-09-17 13:59:07.330 [INF] NTFN: New block: height=861706, sha=0000000000000000000034944eb5dd49baaf6ac457f4cd409306dab6633fdb45
2024-09-17T08:01:54-06:00  2024-09-17 14:01:54.007 [INF] NTFN: New block: height=861707, sha=000000000000000000013b40f643b9f61693c4c3cf2e7984cf3cb50e57987ff6
2024-09-17T08:06:40-06:00  2024-09-17 14:06:40.892 [INF] NTFN: New block: height=861708, sha=0000000000000000000165247e2f4484cb877f5d1b73e857440291608602e40e
2024-09-17T08:10:01-06:00  2024-09-17 14:10:01.957 [INF] NTFN: New block: height=861709, sha=0000000000000000000127d3a4cedc76950974443d0087b9b165ea7416d56288
2024-09-17T08:40:10-06:00  2024-09-17 14:40:10.328 [INF] NTFN: New block: height=861710, sha=0000000000000000000026f84e02451372210c6040571c93b5f670626005290e
2024-09-17T08:41:12-06:00  2024-09-17 14:41:12.497 [INF] NTFN: New block: height=861711, sha=0000000000000000000256de3dc6d866768940fc9bd396999ad7cab8a1d2ecd1
2024-09-17T08:56:21-06:00  2024-09-17 14:56:21.860 [INF] NTFN: New block: height=861712, sha=00000000000000000001dffd2a631a2ae2c76b6b1a2389dc4c8e3422742d9c3b
2024-09-17T09:13:01-06:00  2024-09-17 15:13:01.431 [INF] NTFN: New block: height=861713, sha=0000000000000000000160c89692c117d1a37527e606df9bcbda6072b8eac57f
2024-09-17T09:42:25-06:00  2024-09-17 15:42:25.046 [INF] NTFN: New block: height=861714, sha=00000000000000000001f70b64c90bc7c9bd3cb7e441fe49b250c2ad5d0c2154
2024-09-17T09:55:02-06:00  2024-09-17 15:55:02.575 [INF] NTFN: New block: height=861715, sha=00000000000000000000f5e5667cda80ae7815abf47a660002595a0d742e337b
2024-09-17T09:55:11-06:00  2024-09-17 15:55:11.628 [INF] NTFN: New block: height=861716, sha=000000000000000000012345ff2211ed736449b0d64bacb49dbc7b8f10bf4641
2024-09-17T09:59:23-06:00  2024-09-17 15:59:23.377 [INF] NTFN: New block: height=861717, sha=00000000000000000000d46ea1152a9e5a85f91586e8c447f2880c1060a78eed
2024-09-17T10:05:31-06:00  2024-09-17 16:05:31.278 [INF] NTFN: New block: height=861718, sha=000000000000000000013dbcdd825a3ff618ad9047731bf8f683d44356c46036
2024-09-17T10:09:38-06:00  2024-09-17 16:09:38.444 [INF] NTFN: New block: height=861719, sha=000000000000000000026b2cdb6cc58a49604146508e470f83582e3c47b9be35
2024-09-17T10:14:05-06:00  2024-09-17 16:14:05.798 [INF] NTFN: New block: height=861720, sha=0000000000000000000294f87a3157c5f43fc1d91283fba3d6fb603d963d4d1a
2024-09-17T10:46:24-06:00  2024-09-17 16:46:24.071 [INF] NTFN: New block: height=861721, sha=0000000000000000000193869f303a66bb4d78a951680cde31505207ef33b89a
2024-09-17T10:58:39-06:00  2024-09-17 16:58:39.725 [INF] NTFN: New block: height=861722, sha=00000000000000000002e51c1a372085773f3ef611252a4b79ff04ded0e3308b
2024-09-17T11:03:36-06:00  2024-09-17 17:03:36.463 [INF] NTFN: New block: height=861723, sha=00000000000000000001133953205c3e19b42aecbc44dd8442d80a26c05b451a
2024-09-17T11:31:14-06:00  2024-09-17 17:31:14.695 [INF] NTFN: New block: height=861724, sha=0000000000000000000123a45ab772055e4b3af6718841e1b7cd9dea27794832
2024-09-17T11:31:39-06:00  2024-09-17 17:31:39.144 [INF] NTFN: New block: height=861725, sha=0000000000000000000027a33422ed46c7ec043c5b55e7e5d94641137d70d84e
2024-09-17T11:31:53-06:00  2024-09-17 17:31:53.136 [INF] NTFN: New block: height=861726, sha=000000000000000000017d772aff2f410477529d348caae603f3cf0e484ce958
2024-09-17T12:02:21-06:00  2024-09-17 18:02:21.358 [INF] NTFN: New block: height=861727, sha=00000000000000000000841f696895b2217a9bf9d2bae3c9b5097b5f79bfb905
2024-09-17T13:02:46-06:00  2024-09-17 19:02:46.217 [INF] NTFN: New block: height=861728, sha=000000000000000000014437d7bba984a9d65003f1ac07ff17eb3a0e521bf107
2024-09-17T13:07:40-06:00  2024-09-17 19:07:40.556 [INF] NTFN: New block: height=861729, sha=00000000000000000001479ec6ff40ba9e4e70327b3077ea62a05abb8420c167
2024-09-17T13:39:09-06:00  2024-09-17 19:39:09.533 [INF] NTFN: New block: height=861730, sha=00000000000000000001e097b04cd8b21327c52b6e3e7b534b89c827bb5b4ac7
2024-09-17T13:40:11-06:00  2024-09-17 19:40:11.821 [INF] NTFN: New block: height=861731, sha=000000000000000000004ef2bb70ba8afacf1de7c0dd96cce8d321bd59f80250
2024-09-17T13:43:06-06:00  2024-09-17 19:43:06.021 [INF] NTFN: New block: height=861732, sha=000000000000000000008dfc59d82518a12888f17fb0213fe0db8102afffe0cd
2024-09-17T13:55:02-06:00  2024-09-17 19:55:02.778 [INF] NTFN: New block: height=861733, sha=000000000000000000000fe5549f0a6bceeaaa403d2059e29912b54a4b9ec4ef
2024-09-17T13:57:14-06:00  2024-09-17 19:57:14.890 [INF] NTFN: New block: height=861734, sha=00000000000000000002a3c4fe07a71e0a0f586aa1eb8484934e2f9d8607bafc
2024-09-17T14:01:46-06:00  2024-09-17 20:01:46.671 [INF] NTFN: New block: height=861735, sha=00000000000000000001fc0b4d39cac7198a28649d1b2bb2edd1ac031507cf8b
2024-09-17T14:08:04-06:00  2024-09-17 20:08:04.443 [INF] NTFN: New block: height=861736, sha=00000000000000000000d992c40a2f61714eaf0b589fd96e1caecdb3c9256ce2
2024-09-17T14:15:32-06:00  2024-09-17 20:15:32.942 [INF] NTFN: New block: height=861737, sha=000000000000000000007c54d85b65b16082b70bd2e5bf1f7c074dade5081409
2024-09-17T14:24:59-06:00  2024-09-17 20:24:59.515 [INF] NTFN: New block: height=861738, sha=00000000000000000001c3bcb000da88ffee7aba24618538ce1951bc4d03cac9
2024-09-17T14:39:14-06:00  2024-09-17 20:39:14.435 [INF] NTFN: New block: height=861739, sha=0000000000000000000122577eaf8df6db9651876c2c54f416c5905f8f831257
2024-09-17T14:47:35-06:00  2024-09-17 20:47:35.627 [INF] NTFN: New block: height=861740, sha=000000000000000000029770fb854a2ac3467143a08358cf8c765c55d9a37b3d
2024-09-17T14:48:07-06:00  2024-09-17 20:48:07.519 [INF] NTFN: New block: height=861741, sha=000000000000000000016c280cbc17ed15ff8b6933e33e8b9501cd29b024f5ac
2024-09-17T15:09:46-06:00  2024-09-17 21:09:46.172 [INF] NTFN: New block: height=861742, sha=000000000000000000002fe5032463ec838601120b9411681abea9973723e8b5
2024-09-17T15:17:46-06:00  2024-09-17 21:17:46.373 [INF] NTFN: New block: height=861743, sha=00000000000000000000af50fc33e8317a7c016f26667f0816e37120e65b79c5
2024-09-17T15:18:34-06:00  2024-09-17 21:18:34.947 [INF] NTFN: New block: height=861744, sha=00000000000000000001e4c158351af6b01985d68b764c6cd9ebd407186aab98
2024-09-17T15:29:01-06:00  2024-09-17 21:29:01.896 [INF] NTFN: New block: height=861745, sha=00000000000000000002293934890b15014329d1eb71a2e1a1703cd56e2bbe18
2024-09-17T15:30:00-06:00  2024-09-17 21:30:00.248 [INF] NTFN: New block: height=861746, sha=00000000000000000002ec9814e822de22af028336241232d2ac52e0546b114a
2024-09-17T15:31:50-06:00  2024-09-17 21:31:50.070 [INF] NTFN: New block: height=861747, sha=000000000000000000009afe687d339ea649af875b0cf990aba1567f72c20687
2024-09-17T15:32:29-06:00  2024-09-17 21:32:29.827 [INF] NTFN: New block: height=861748, sha=000000000000000000021574f3fb07130d969eb41301edbf10bc6dea8f7064cb
2024-09-17T15:48:21-06:00  2024-09-17 21:48:21.928 [INF] NTFN: New block: height=861749, sha=000000000000000000028306f707d719740b001f20023e3e19ac76fb4eca1223
2024-09-17T15:48:33-06:00  2024-09-17 21:48:33.539 [INF] NTFN: New block: height=861750, sha=000000000000000000013b58f464f8d992ec16ba7b2ba58ffcbcc7f2b86a4103
2024-09-17T15:51:46-06:00  2024-09-17 21:51:46.078 [INF] NTFN: New block: height=861751, sha=000000000000000000012bfb475193e1b0701ea302c4d0ae584e58fae29cf83d
2024-09-17T15:56:01-06:00  2024-09-17 21:56:01.917 [INF] NTFN: New block: height=861752, sha=0000000000000000000114b215b870e441bb61aa689958239a268d73c12cb96a
2024-09-17T15:57:00-06:00  2024-09-17 21:57:00.780 [INF] NTFN: New block: height=861753, sha=00000000000000000002c931dd38b0d987b5fefe0014d62f68d105b12699b47a
2024-09-17T16:04:38-06:00  2024-09-17 22:04:38.716 [INF] NTFN: New block: height=861754, sha=00000000000000000001e72ef23d418510680fdc299e085b5261806217752032
2024-09-17T16:07:50-06:00  2024-09-17 22:07:50.898 [INF] NTFN: New block: height=861755, sha=000000000000000000020c7315daea2d4cc997c7eda98d1710fde40f49d3e6f4
2024-09-17T16:11:23-06:00  2024-09-17 22:11:23.343 [INF] NTFN: New block: height=861756, sha=000000000000000000009df2f6380a1d1163de074267b582f08ed6acf1dac3d6
2024-09-17T16:33:50-06:00  2024-09-17 22:33:50.202 [INF] NTFN: New block: height=861757, sha=00000000000000000000d42d1d244df7155e5ed360484a9f9560df99652c0827
2024-09-17T16:35:13-06:00  2024-09-17 22:35:13.109 [INF] NTFN: New block: height=861758, sha=00000000000000000001d2ee72189ad8e061f31f52eb6a5c557bb5938bf231d5
2024-09-17T16:40:56-06:00  2024-09-17 22:40:56.278 [INF] NTFN: New block: height=861759, sha=00000000000000000001990000bc18b5a2d3d58bb5685b938726321d08ae0056
2024-09-17T16:44:06-06:00  2024-09-17 22:44:06.433 [INF] NTFN: New block: height=861760, sha=0000000000000000000009d6d8b090c5c665d1e9d76540df6f678d1c0dc8c0a8
2024-09-17T17:10:39-06:00  2024-09-17 23:10:39.463 [INF] NTFN: New block: height=861761, sha=000000000000000000004923067ea22df622eb984d0276d090d60aa67eaf4c1b
2024-09-17T17:21:00-06:00  2024-09-17 23:21:00.477 [INF] NTFN: New block: height=861762, sha=000000000000000000027bc98d2365564b693bb9e478053e8afd82ea67018ad4
2024-09-17T17:27:10-06:00  2024-09-17 23:27:10.006 [INF] NTFN: New block: height=861763, sha=000000000000000000022bcab9a706a0acbf12efd13a566e32826ae0738b273c
2024-09-17T17:41:27-06:00  2024-09-17 23:41:27.945 [INF] NTFN: New block: height=861764, sha=0000000000000000000052f7b389586b5360994294a409b232d7f11f36b68163
2024-09-17T17:46:31-06:00  2024-09-17 23:46:31.048 [INF] NTFN: New block: height=861765, sha=000000000000000000003ee2999477b15663c62c2f1f21b849bf405bff47fddc
2024-09-17T17:47:17-06:00  2024-09-17 23:47:17.401 [INF] NTFN: New block: height=861766, sha=00000000000000000001cbc6ba4075b1216ae585961627b8d33caf605ef0558c
2024-09-17T18:04:12-06:00  2024-09-18 00:04:12.883 [INF] NTFN: New block: height=861767, sha=00000000000000000002cfd3df073281c33f6a8f6edc7191b50d127b0ef3521a
2024-09-17T18:09:42-06:00  2024-09-18 00:09:42.123 [INF] NTFN: New block: height=861768, sha=0000000000000000000270ed40a2bc93999a40a67a1bf76bd55a916fd385a133
2024-09-17T18:11:20-06:00  2024-09-18 00:11:20.176 [INF] NTFN: New block: height=861769, sha=00000000000000000001a058bad7d7446a198c9fbe4811d701565da96d8c8cf3
2024-09-17T18:12:41-06:00  2024-09-18 00:12:41.131 [INF] NTFN: New block: height=861770, sha=0000000000000000000056609318906e0a9a14a773ad6c1f94170ed54cc5036d
2024-09-17T18:19:17-06:00  2024-09-18 00:19:17.494 [INF] NTFN: New block: height=861771, sha=000000000000000000003164f0be60078d725975e06be7313d1f7f02dfc0725f
2024-09-17T18:28:18-06:00  2024-09-18 00:28:18.989 [INF] RPCS: [debuglevel] changing debug level to: GRPH=debug,LNWL=debug
2024-09-17T18:28:18-06:00  2024-09-18 00:28:18.990 [ERR] RPCS: [/lnrpc.Lightning/DebugLevel]: the specified subsystem [GRPH] is invalid -- supported subsystems are [ARPC ATPL BRAR BTCN BTWL CHAC CHBU CHCL CHDB CHFD CHFT CHNF CHRE CLUS CMGR CNCT CRTR DISC DRPC FNDG HLCK HSWC INVC IRPC LNWL LTND NANN NRPC NTFN NTFR PEER PRNF PROM PRPC RPCP RPCS RPWL RRPC SGNR SPHX SRVR SWPR TORC UTXN VRPC WLKT WTCL WTWR]
2024-09-17T18:28:36-06:00  2024-09-18 00:28:36.603 [INF] RPCS: [debuglevel] changing debug level to: GRPH=debug,LNWL=debug
2024-09-17T18:28:36-06:00  2024-09-18 00:28:36.603 [ERR] RPCS: [/lnrpc.Lightning/DebugLevel]: the specified subsystem [GRPH] is invalid -- supported subsystems are [ARPC ATPL BRAR BTCN BTWL CHAC CHBU CHCL CHDB CHFD CHFT CHNF CHRE CLUS CMGR CNCT CRTR DISC DRPC FNDG HLCK HSWC INVC IRPC LNWL LTND NANN NRPC NTFN NTFR PEER PRNF PROM PRPC RPCP RPCS RPWL RRPC SGNR SPHX SRVR SWPR TORC UTXN VRPC WLKT WTCL WTWR]
2024-09-17T18:28:55-06:00  2024-09-18 00:28:55.871 [INF] NTFN: New block: height=861772, sha=000000000000000000014fc7f44f610faf345c89fe78b28794f6dfda234a0952
2024-09-17T18:37:15-06:00  2024-09-18 00:37:15.493 [INF] NTFN: New block: height=861773, sha=0000000000000000000064cc4d1d8c757312eac6ee4ab8ca377028e5b17cdea6
2024-09-17T19:06:28-06:00  2024-09-18 01:06:28.968 [INF] NTFN: New block: height=861774, sha=000000000000000000021416f45b3c5ab620410abd667e33f918898b5a52a657
2024-09-17T19:32:24-06:00  2024-09-18 01:32:24.355 [INF] NTFN: New block: height=861775, sha=00000000000000000001c1794db7cc81e21ad5ed0a30965f20cfceec860a97a4
2024-09-17T19:48:40-06:00  2024-09-18 01:48:40.111 [INF] NTFN: New block: height=861776, sha=000000000000000000004dc4578a7314a8280dec22640269d19127e645fadd2f
2024-09-17T20:16:11-06:00  2024-09-18 02:16:11.814 [INF] NTFN: New block: height=861777, sha=0000000000000000000220363d473bb1b6ffa62468fc19ddba9dcec167268fc0
2024-09-17T20:23:22-06:00  2024-09-18 02:23:22.149 [INF] NTFN: New block: height=861778, sha=00000000000000000001cfe8a79afc9274f22fad78c7216299b562d54f09539b
2024-09-17T20:43:49-06:00  2024-09-18 02:43:49.446 [INF] NTFN: New block: height=861779, sha=0000000000000000000228b20c82fdc8552e6a2764bb712db54e23ddb9bb55a1
2024-09-17T20:45:36-06:00  2024-09-18 02:45:36.982 [INF] NTFN: New block: height=861780, sha=00000000000000000002d8a02875d5a869b235fc9fd1adf6ab55a24da73757f0
2024-09-17T20:53:23-06:00  2024-09-18 02:53:23.976 [INF] NTFN: New block: height=861781, sha=000000000000000000025591412ea565b776efe66a7a14ad17d7761d0ca6e116
2024-09-17T21:16:29-06:00  2024-09-18 03:16:29.255 [INF] NTFN: New block: height=861782, sha=0000000000000000000244972b82b5dc1fe3b83eda4bf44aa6d6d93f9631a0dd
2024-09-17T21:35:11-06:00  2024-09-18 03:35:11.870 [INF] NTFN: New block: height=861783, sha=00000000000000000002d0eabf686962b1457fd66a0297e40fcecad209923245
2024-09-17T21:39:26-06:00  2024-09-18 03:39:26.324 [INF] NTFN: New block: height=861784, sha=00000000000000000002598bb362e9564e09ce586cbd11a2aff88c13c50f90db
2024-09-17T21:41:44-06:00  2024-09-18 03:41:44.615 [INF] NTFN: New block: height=861785, sha=00000000000000000002b71a5f865cb427ee0f2b58b14e9adc73446b80be7ebe
2024-09-17T21:42:02-06:00  2024-09-18 03:42:02.857 [INF] NTFN: New block: height=861786, sha=00000000000000000000e06bdda485feea9b9851429ce8f26e49d4b80598e6b8
2024-09-17T21:43:01-06:00  2024-09-18 03:43:01.497 [INF] NTFN: New block: height=861787, sha=00000000000000000001ed47619687489815c0c778ed0b5573e22b49939a1bef
2024-09-17T21:50:38-06:00  2024-09-18 03:50:38.762 [INF] NTFN: New block: height=861788, sha=00000000000000000000332d84002c19d73f98b9183a0617a8b5610f4babec3c
2024-09-17T22:02:10-06:00  2024-09-18 04:02:10.745 [INF] NTFN: New block: height=861789, sha=000000000000000000009d3945ef94f3dc8408f391bedced9c62a79ee7b3acc8
2024-09-17T22:15:17-06:00  2024-09-18 04:15:17.312 [INF] NTFN: New block: height=861790, sha=00000000000000000000fcb95c4c545d0f9922e86b99e906d89a89547e73b8ca
2024-09-17T22:19:29-06:00  2024-09-18 04:19:29.384 [INF] NTFN: New block: height=861791, sha=000000000000000000008e8a3f9a9fc566a9b12bd13a211cf124b1a9a080da40
2024-09-17T22:48:19-06:00  2024-09-18 04:48:19.011 [INF] NTFN: New block: height=861792, sha=000000000000000000012e340206b958c0dc2107fa286a4b48ae1fe387822123
2024-09-17T22:50:31-06:00  2024-09-18 04:50:31.887 [INF] NTFN: New block: height=861793, sha=00000000000000000001a744ec683d14a1017f4333b51fe0c58da4e301b4e2ff
2024-09-17T22:50:51-06:00  2024-09-18 04:50:51.085 [INF] NTFN: New block: height=861794, sha=00000000000000000000516c415b105fd196de8f73819c71497baf0291c9179b
2024-09-17T22:52:54-06:00  2024-09-18 04:52:54.559 [INF] NTFN: New block: height=861795, sha=00000000000000000000455b0b9fbc6726978ca56e21dd09551304c84e7aff71
2024-09-17T22:53:32-06:00  2024-09-18 04:53:32.126 [INF] NTFN: New block: height=861796, sha=00000000000000000000fa6f97c15d29e97277f0789a8129cf8dcea67eded010
2024-09-17T22:56:34-06:00  2024-09-18 04:56:34.962 [INF] NTFN: New block: height=861797, sha=000000000000000000024008d4435e1e70fa9c98c3222a2b12f8681d2541c6fc
2024-09-17T23:15:11-06:00  2024-09-18 05:15:11.014 [INF] NTFN: New block: height=861798, sha=00000000000000000000ebd3b3a9ac1811272fd68adf3af8b5f683a86c060d1c
2024-09-17T23:24:18-06:00  2024-09-18 05:24:18.131 [INF] NTFN: New block: height=861799, sha=00000000000000000000ac0e1d72cf49c18f64f6acdafa098971bd6de5a7fa0a
2024-09-17T23:46:42-06:00  2024-09-18 05:46:42.276 [INF] NTFN: New block: height=861800, sha=00000000000000000001b3764293b597baa80f600a2cdcc2dbb6928964e53701
2024-09-17T23:51:06-06:00  2024-09-18 05:51:06.916 [INF] NTFN: New block: height=861801, sha=000000000000000000005faa9eb8a9de371f31ef618a05e8df63060d6c6e6dd6
2024-09-17T23:57:10-06:00  2024-09-18 05:57:10.867 [INF] NTFN: New block: height=861802, sha=0000000000000000000078de0f685b0a8956c62e2868d3bf2e0bea64d4b9de18
2024-09-17T23:59:29-06:00  2024-09-18 05:59:29.601 [INF] NTFN: New block: height=861803, sha=000000000000000000004eca73af02cacdc6308954b014b0be48849d6c2abc75
2024-09-18T00:09:43-06:00  2024-09-18 06:09:43.281 [INF] NTFN: New block: height=861804, sha=00000000000000000001df2f13f738a08f035789c79a5305fc7da19a5a92990a
2024-09-18T00:11:50-06:00  2024-09-18 06:11:50.813 [INF] NTFN: New block: height=861805, sha=000000000000000000015c497bc3cc556c391cef0895b6c920f147a6f0b024eb
2024-09-18T00:22:51-06:00  2024-09-18 06:22:51.933 [INF] NTFN: New block: height=861806, sha=0000000000000000000005c8c7e75ddcb03586fef681664b337325d1e7eeeda5
2024-09-18T00:44:43-06:00  2024-09-18 06:44:43.327 [INF] NTFN: New block: height=861807, sha=00000000000000000000ac1a7c31a9b84ea68294e36e25e492bc9f066f2346d7
2024-09-18T01:00:57-06:00  2024-09-18 07:00:57.636 [INF] NTFN: New block: height=861808, sha=00000000000000000000f65ea1458c95a5d6c4d4b598bfdfda774c565ec926d4
2024-09-18T01:46:40-06:00  2024-09-18 07:46:40.011 [INF] NTFN: New block: height=861809, sha=00000000000000000001fa8c121d6e834fef8528125e0dd849620c35e9118ef5
2024-09-18T01:56:01-06:00  2024-09-18 07:56:01.125 [INF] NTFN: New block: height=861810, sha=00000000000000000000f057df66000dc58110536650bfaa5d5599e52fa6ef34
2024-09-18T01:56:21-06:00  2024-09-18 07:56:21.233 [INF] NTFN: New block: height=861811, sha=0000000000000000000029b0c449acf855652679f3eed7caa63155540e413320
2024-09-18T01:57:24-06:00  2024-09-18 07:57:24.709 [INF] NTFN: New block: height=861812, sha=000000000000000000011c4726adc883b0117b2e1adb6ac210a352fb31b6ab39
2024-09-18T01:59:37-06:00  2024-09-18 07:59:37.638 [INF] NTFN: New block: height=861813, sha=000000000000000000024e3354d54458dc9c2ad494c02da1bc5e3a534ef1e928
2024-09-18T02:01:33-06:00  2024-09-18 08:01:33.466 [INF] NTFN: New block: height=861814, sha=00000000000000000002fad65e2918d27069297cde068eca42b78bb7d80a673a
2024-09-18T02:09:59-06:00  2024-09-18 08:09:59.216 [INF] NTFN: New block: height=861815, sha=00000000000000000001ddc37ab4922619860a3756488b3ef16270b600646cf5
2024-09-18T02:26:09-06:00  2024-09-18 08:26:09.335 [INF] NTFN: New block: height=861816, sha=000000000000000000016de156fc8df63b09a6a42f94c7a23b335ce1e6f9d29f
2024-09-18T02:32:38-06:00  2024-09-18 08:32:38.096 [INF] NTFN: New block: height=861817, sha=00000000000000000000cbf7f4ef3f0b2e2b27977d2bc530db623e9ad611dfbd
2024-09-18T02:38:01-06:00  2024-09-18 08:38:01.017 [INF] NTFN: New block: height=861818, sha=0000000000000000000093710ef62118685e8deb51d1b0b198a49595a4b79ea5
2024-09-18T02:39:51-06:00  2024-09-18 08:39:51.521 [INF] NTFN: New block: height=861819, sha=00000000000000000002cf90b7742be568d9f44da8ec85e036026de1bd15f074
2024-09-18T03:15:08-06:00  2024-09-18 09:15:08.602 [INF] NTFN: New block: height=861820, sha=00000000000000000000486fa998cdaa5e065b3c5767aafb0090f9420ca74f8e
2024-09-18T03:17:13-06:00  2024-09-18 09:17:13.408 [INF] NTFN: New block: height=861821, sha=00000000000000000002c28abd38edb5a84bd2d051b00701ff5140a08b089e9e
2024-09-18T03:21:10-06:00  2024-09-18 09:21:10.606 [INF] NTFN: New block: height=861822, sha=00000000000000000001b90894ee363bfe529187fe77c76ad33591f6cf79d8d8
2024-09-18T03:33:16-06:00  2024-09-18 09:33:16.531 [INF] NTFN: New block: height=861823, sha=0000000000000000000188dc24ba86d6f339fb362bf8782148eb434fe536780a
2024-09-18T03:33:37-06:00  2024-09-18 09:33:37.893 [INF] NTFN: New block: height=861824, sha=0000000000000000000114583df367b1a86752360f43b74f70bf52c285822d45
2024-09-18T03:44:13-06:00  2024-09-18 09:44:13.041 [INF] NTFN: New block: height=861825, sha=000000000000000000009d97a54322291fcd4badddee81d8be50065a1bedc2e5
2024-09-18T03:47:04-06:00  2024-09-18 09:47:04.378 [INF] NTFN: New block: height=861826, sha=00000000000000000002a7363efd3f2e556db21e178306f0985bebe101fdec3e
2024-09-18T04:01:14-06:00  2024-09-18 10:01:14.826 [INF] NTFN: New block: height=861827, sha=0000000000000000000151a68c823985a9623b258ccc8a648604690d7fda80aa
2024-09-18T04:14:28-06:00  2024-09-18 10:14:28.533 [INF] NTFN: New block: height=861828, sha=000000000000000000029cdb65971254fd21eae72b610a4a1ba4ca5f7dbf17f4
2024-09-18T04:25:39-06:00  2024-09-18 10:25:39.644 [INF] NTFN: New block: height=861829, sha=000000000000000000013ccc31ce73dbb0903607445dca8fc880abd318c77cfd
2024-09-18T04:26:56-06:00  2024-09-18 10:26:56.980 [INF] NTFN: New block: height=861830, sha=00000000000000000000a9f5b055a501cb04c0bc693dd2199948472547ebca9f
2024-09-18T04:31:31-06:00  2024-09-18 10:31:31.497 [INF] NTFN: New block: height=861831, sha=000000000000000000011e3b6ab780561054812c44ef5eda9c1fd4cf851a3c2d
2024-09-18T04:53:48-06:00  2024-09-18 10:53:48.498 [INF] NTFN: New block: height=861832, sha=000000000000000000028075394c114fa280b1a377adaaeb6fada2a3ccf62455
2024-09-18T04:55:08-06:00  2024-09-18 10:55:08.817 [INF] NTFN: New block: height=861833, sha=0000000000000000000030e745b6e00f941128b671d4edd631d21ea725d875de
2024-09-18T04:55:25-06:00  2024-09-18 10:55:25.397 [INF] NTFN: New block: height=861834, sha=00000000000000000000837036ec2889cab7882b0dd9e8425e3d26a4b1499365
2024-09-18T05:11:57-06:00  2024-09-18 11:11:57.744 [INF] NTFN: New block: height=861835, sha=00000000000000000000a5b40e45d48aa090f0109752c3b2021048f34b3622f6
2024-09-18T05:12:39-06:00  2024-09-18 11:12:39.204 [INF] NTFN: New block: height=861836, sha=00000000000000000000632945743f9b9d25a2c30abf0ce94c9583530e64b054
2024-09-18T05:14:10-06:00  2024-09-18 11:14:10.573 [INF] NTFN: New block: height=861837, sha=00000000000000000001b4cfb6f64744ccb262dd2906b7e3c968ee38aedcb77b
2024-09-18T05:23:21-06:00  2024-09-18 11:23:21.677 [INF] NTFN: New block: height=861838, sha=00000000000000000000db434ebfb9efbe92c7bc2a4df2aa6648096321af16fe
2024-09-18T05:34:06-06:00  2024-09-18 11:34:06.121 [INF] NTFN: New block: height=861839, sha=00000000000000000002fb720ce801bdc4891838baaa35eed5148a0755f1aba2
2024-09-18T05:36:58-06:00  2024-09-18 11:36:58.855 [INF] NTFN: New block: height=861840, sha=0000000000000000000294d85d56f3f48d747d6b97e01887f1d704ceda57f655
2024-09-18T05:38:16-06:00  2024-09-18 11:38:16.499 [INF] NTFN: New block: height=861841, sha=00000000000000000002568d426b168fce2208928ff581ab54237531157338c7
2024-09-18T05:41:18-06:00  2024-09-18 11:41:18.110 [INF] NTFN: New block: height=861842, sha=00000000000000000002387ef1adc42cb97f1eda3106c3852af744ecd1950a4a
2024-09-18T05:47:11-06:00  2024-09-18 11:47:11.536 [INF] NTFN: New block: height=861843, sha=0000000000000000000099d62df424dba21e80a80835f39121966f15ce0ac721
2024-09-18T05:53:12-06:00  2024-09-18 11:53:12.644 [INF] NTFN: New block: height=861844, sha=00000000000000000001bbf094ddc68fe6d1216082044aff0656d6718c7ba76b
2024-09-18T06:06:11-06:00  2024-09-18 12:06:11.529 [INF] NTFN: New block: height=861845, sha=000000000000000000002568121b8ce191732805b49472e949811edd85335256
2024-09-18T06:25:41-06:00  2024-09-18 12:25:41.555 [INF] NTFN: New block: height=861846, sha=000000000000000000009c97e9afce4bc259c6a2e9f576c42c998011ef464b83
2024-09-18T06:27:42-06:00  2024-09-18 12:27:42.349 [INF] NTFN: New block: height=861847, sha=000000000000000000030373a9275a01fdd5ce356938087d2b05bf036997560c
2024-09-18T06:28:18-06:00  2024-09-18 12:28:18.183 [INF] NTFN: New block: height=861848, sha=00000000000000000001e9b7beb6e888d42e9c18aa15f80b9491befd827d0a67
2024-09-18T06:28:18-06:00  2024-09-18 12:28:18.185 [INF] NTFN: New block: height=861849, sha=00000000000000000001d2dada415a9d9e0868ce2a789273e08a4895abfc678c
2024-09-18T06:44:20-06:00  2024-09-18 12:44:20.656 [INF] NTFN: New block: height=861850, sha=0000000000000000000188cce204fb9a4a125f6c0d0783e6a87641a0f6724c09
2024-09-18T06:48:41-06:00  2024-09-18 12:48:41.889 [INF] NTFN: New block: height=861851, sha=000000000000000000023dfe8729c36fe3bda183247ab64ec477e1ba2cf38625
2024-09-18T06:59:06-06:00  2024-09-18 12:59:06.765 [INF] NTFN: New block: height=861852, sha=00000000000000000002ad2b18ca72df3bac4dbaa2a2ff715a68449ef6a2bde5
2024-09-18T07:04:11-06:00  2024-09-18 13:04:11.486 [INF] NTFN: New block: height=861853, sha=00000000000000000000605c3c8df155eab4e28ef65459e46616249e8e9a4705
2024-09-18T07:22:52-06:00  2024-09-18 13:22:52.998 [INF] NTFN: New block: height=861854, sha=00000000000000000002c7616144b3d0a654932e0b40490905e9efd3f1194db0
2024-09-18T07:58:40-06:00  2024-09-18 13:58:40.525 [INF] NTFN: New block: height=861855, sha=00000000000000000002bc7acde30b78dbe6d306ecdf89c39d2129b2c06de4bb
2024-09-18T08:01:12-06:00  2024-09-18 14:01:12.038 [INF] NTFN: New block: height=861856, sha=00000000000000000000333c1d016367919f9d3656638ae2a99958f81f5158c3
2024-09-18T08:25:42-06:00  2024-09-18 14:25:42.679 [INF] NTFN: New block: height=861857, sha=000000000000000000026d3ad1c4e644c53f8253be849d5be279478f4384757c
2024-09-18T08:27:35-06:00  2024-09-18 14:27:35.560 [INF] NTFN: New block: height=861858, sha=0000000000000000000024df07b16d8faeda989697e94a4251e42d605e2cdcea
2024-09-18T08:37:10-06:00  2024-09-18 14:37:10.889 [INF] NTFN: New block: height=861859, sha=0000000000000000000114bc365db2a4979d9b363ba576ccfac37208d17301dc
2024-09-18T08:53:17-06:00  2024-09-18 14:53:17.690 [INF] NTFN: New block: height=861860, sha=00000000000000000000d0ba5341a7e36d78110fdeed2c081653971806e3a336
2024-09-18T09:09:38-06:00  2024-09-18 15:09:38.346 [INF] NTFN: New block: height=861861, sha=00000000000000000000d29470e68d5f1791225d5308cc579ba9fced359315f3
2024-09-18T09:19:03-06:00  2024-09-18 15:19:03.413 [INF] NTFN: New block: height=861862, sha=00000000000000000001e73126f96379e9268725da2c77e03f55d17e7b30c840
2024-09-18T09:22:14-06:00  2024-09-18 15:22:14.992 [INF] NTFN: New block: height=861863, sha=000000000000000000020d621417785c77f3177301b2a9fdc3e62850627d9b7c
2024-09-18T09:39:55-06:00  2024-09-18 15:39:55.317 [INF] NTFN: New block: height=861864, sha=0000000000000000000169ba0c80c158875c02226ad9cb4597a4a792b67a45c3
2024-09-18T09:42:05-06:00  2024-09-18 15:42:05.547 [INF] NTFN: New block: height=861865, sha=00000000000000000001f551d4b79cb13a8f790de6fdc9c66833d8440e1ba4cc
2024-09-18T10:05:06-06:00  2024-09-18 16:05:06.775 [INF] NTFN: New block: height=861866, sha=00000000000000000001807eed038ae21e4dbba095bb37def9be0e48d8745b67
2024-09-18T10:20:29-06:00  2024-09-18 16:20:29.534 [INF] NTFN: New block: height=861867, sha=000000000000000000024bca597b9db813fd3d07a1fd1d2bb3c49e8d78189444
2024-09-18T10:31:05-06:00  2024-09-18 16:31:05.796 [INF] NTFN: New block: height=861868, sha=00000000000000000001a3efb0e77edb4d240f97f8119a57a322dc1679e2a56b
2024-09-18T10:37:24-06:00  2024-09-18 16:37:24.491 [INF] NTFN: New block: height=861869, sha=0000000000000000000288827cb09d404afb6d74ef1bc092ba147473a2882743
2024-09-18T10:58:22-06:00  2024-09-18 16:58:22.080 [INF] NTFN: New block: height=861870, sha=00000000000000000000283facf5fcffd610abfbaec66c195303b5379982d6a4
2024-09-18T11:12:38-06:00  2024-09-18 17:12:38.988 [INF] NTFN: New block: height=861871, sha=00000000000000000000c38a014b4e8b3e714ce789a2621bea5343980a537857
2024-09-18T11:59:16-06:00  2024-09-18 17:59:16.010 [INF] NTFN: New block: height=861872, sha=000000000000000000005c9ccdc271214be1fc24d5c9af7df56cf413a906742c
2024-09-18T12:14:39-06:00  2024-09-18 18:14:39.385 [INF] NTFN: New block: height=861873, sha=000000000000000000011ab13068e1725c74eced182083e6093f2f2668c9dece
2024-09-18T12:16:29-06:00  2024-09-18 18:16:29.989 [INF] NTFN: New block: height=861874, sha=00000000000000000002c183ba87efed314a3cff85552ea2e100192b0ad58fd0
2024-09-18T12:19:19-06:00  2024-09-18 18:19:19.983 [INF] NTFN: New block: height=861875, sha=00000000000000000001643bd540895186f38ee55b0d1576ea146dbdf3df0f84
2024-09-18T12:32:35-06:00  2024-09-18 18:32:35.970 [INF] NTFN: New block: height=861876, sha=00000000000000000002f19b050ab71c6a00d33be75a3419c7477c869f969b03
2024-09-18T12:43:06-06:00  2024-09-18 18:43:06.121 [INF] NTFN: New block: height=861877, sha=00000000000000000000dbf119e7ec5956a51638feefc69243ad9915b70926a4
2024-09-18T12:45:59-06:00  2024-09-18 18:45:59.788 [INF] NTFN: New block: height=861878, sha=000000000000000000012130696d7a76520bcd6b371429ab59bf4787800e4c7e
2024-09-18T12:48:18-06:00  2024-09-18 18:48:18.154 [INF] NTFN: New block: height=861879, sha=00000000000000000000a7576a73c6231e3512ea2be5dcd25376399a7d5efdbe
2024-09-18T12:49:33-06:00  2024-09-18 18:49:33.706 [INF] NTFN: New block: height=861880, sha=0000000000000000000262bc29622a8a015690d2412a95b6cab13c85ce6b5097
2024-09-18T13:05:12-06:00  2024-09-18 19:05:12.521 [INF] NTFN: New block: height=861881, sha=00000000000000000001ca990ce8050cbb159cd52eca16630549b244ad5f6723
2024-09-18T13:14:22-06:00  2024-09-18 19:14:22.529 [INF] NTFN: New block: height=861882, sha=000000000000000000006fa9d6b08b171780016932b7afad3284788da4aa3daa
2024-09-18T13:19:34-06:00  2024-09-18 19:19:34.444 [INF] NTFN: New block: height=861883, sha=00000000000000000000e473e8b5cf5d79dd20f2b2afd16b4a93207aa7d6d35e
2024-09-18T13:33:48-06:00  2024-09-18 19:33:48.528 [INF] NTFN: New block: height=861884, sha=000000000000000000027b96cb9944abdcf93f3bb4be247ea00e4770c613d3e1
2024-09-18T13:45:07-06:00  2024-09-18 19:45:07.684 [INF] NTFN: New block: height=861885, sha=00000000000000000000e6219a952c13105b06d7b1827f34a053bda5582103cc
2024-09-18T13:52:09-06:00  2024-09-18 19:52:09.089 [INF] NTFN: New block: height=861886, sha=000000000000000000011831dbe8c2a0aa92fa5400ae906d99029de61e622770
2024-09-18T13:52:21-06:00  2024-09-18 19:52:21.571 [INF] NTFN: New block: height=861887, sha=000000000000000000001556a2913efd99b7c0c243b16b8e1a757281ea1c7a1e
2024-09-18T13:54:41-06:00  2024-09-18 19:54:41.554 [INF] NTFN: New block: height=861888, sha=00000000000000000000cb217cb5eda85d04e217f5299b66c70247ef1e07bfcb
2024-09-18T14:04:38-06:00  2024-09-18 20:04:38.046 [INF] NTFN: New block: height=861889, sha=00000000000000000001644e5dc1330c113efd75bf3c4a930e8cedbc801066e9
2024-09-18T14:15:59-06:00  2024-09-18 20:15:59.545 [INF] NTFN: New block: height=861890, sha=000000000000000000030029a846cab423d57dd389ee52ab6555197b28277011
2024-09-18T14:20:05-06:00  2024-09-18 20:20:05.301 [INF] NTFN: New block: height=861891, sha=00000000000000000001021c22beeb0780eb14d7ffdc3d074bfa6f90142f1ca3
2024-09-18T14:45:42-06:00  2024-09-18 20:45:42.483 [INF] NTFN: New block: height=861892, sha=00000000000000000000a36a2d0e1cc83c2d0e397ece136503ab5044cb1498f0
2024-09-18T15:06:45-06:00  2024-09-18 21:06:45.732 [INF] NTFN: New block: height=861893, sha=000000000000000000006bbf6d825a0f944f64113651bd95d1680b43782280ef
2024-09-18T15:12:25-06:00  2024-09-18 21:12:25.569 [INF] NTFN: New block: height=861894, sha=00000000000000000001e8401114ef4d16bb5bc7bba463ab370906f689f0297c
2024-09-18T15:12:36-06:00  2024-09-18 21:12:36.938 [INF] NTFN: New block: height=861895, sha=000000000000000000027927a26d6df33275892ba7a87fb26064af3477aad4db
2024-09-18T15:25:03-06:00  2024-09-18 21:25:03.496 [INF] NTFN: New block: height=861896, sha=00000000000000000002e84dd9af3dd96025e357052d2cc82aecfc408ea8ef76
2024-09-18T15:43:09-06:00  2024-09-18 21:43:09.647 [INF] NTFN: New block: height=861897, sha=000000000000000000022203597876537bb5bb0e30104eb0fa2bc80db005667f
2024-09-18T15:44:05-06:00  2024-09-18 21:44:05.320 [INF] NTFN: New block: height=861898, sha=00000000000000000000452a5883bc5d7482d6978dff7effe6718070ade32025
2024-09-18T16:34:40-06:00  2024-09-18 22:34:40.309 [INF] NTFN: New block: height=861899, sha=000000000000000000000260a9a36fa3aa38f3482609088ac746cdd171a34f8c
2024-09-18T16:48:16-06:00  2024-09-18 22:48:16.982 [INF] NTFN: New block: height=861900, sha=00000000000000000001828efc0914f58dd6d2738e3cb542f9429f1b5781cd5c
2024-09-18T16:51:15-06:00  2024-09-18 22:51:15.142 [INF] NTFN: New block: height=861901, sha=000000000000000000028e51e429ae177d6c3a1bf77818821bc22ee8d6ad6a95
2024-09-18T16:53:00-06:00  2024-09-18 22:53:00.811 [INF] NTFN: New block: height=861902, sha=00000000000000000000d9d104a3021941c2a2c85e25ea49b3635ff7a33a9958
2024-09-18T17:23:47-06:00  2024-09-18 23:23:47.828 [INF] NTFN: New block: height=861903, sha=0000000000000000000034d6767906ca5b639ccbf0fcfc5f697dba1ffc741ba8
2024-09-18T17:42:37-06:00  2024-09-18 23:42:37.080 [INF] NTFN: New block: height=861904, sha=0000000000000000000079779c9ad30fdd16ece949a5ab65f2ff2c76a0f4944c
2024-09-18T18:04:38-06:00  2024-09-19 00:04:38.571 [INF] NTFN: New block: height=861905, sha=00000000000000000001102d40b9e1e75040a4c8641acd392efdd20937f42f22
2024-09-18T18:12:58-06:00  2024-09-19 00:12:58.314 [INF] NTFN: New block: height=861906, sha=000000000000000000015b549157f6e05c245a74f1de0cdefa8dce047f2ef635
2024-09-18T18:13:57-06:00  2024-09-19 00:13:57.484 [INF] NTFN: New block: height=861907, sha=00000000000000000002bfbafb2d872dcfb16ae13be6f0bd065b3b1e7c204a1e
2024-09-18T18:21:08-06:00  2024-09-19 00:21:08.641 [INF] NTFN: New block: height=861908, sha=00000000000000000001cb110a0ac6554a35f3a0b027a137a74a277d101c6436
2024-09-18T18:55:43-06:00  2024-09-19 00:55:43.255 [INF] NTFN: New block: height=861909, sha=00000000000000000000a3178175814403c4624347361f6b3db5e91bd300ba34
2024-09-18T19:01:50-06:00  2024-09-19 01:01:50.354 [INF] NTFN: New block: height=861910, sha=0000000000000000000131a2543e5e222f32d973670eb245bf0363658d7c8bb1
2024-09-18T19:05:44-06:00  2024-09-19 01:05:44.314 [INF] NTFN: New block: height=861911, sha=00000000000000000002d4aa84ea8717b52436c2406fa75945283a259dacf13c
2024-09-18T19:31:10-06:00  2024-09-19 01:31:10.599 [INF] NTFN: New block: height=861912, sha=0000000000000000000267ccaa1c697e99ffa88fca4f31c68b2489596774ea0e
2024-09-18T19:37:06-06:00  2024-09-19 01:37:06.383 [INF] NTFN: New block: height=861913, sha=00000000000000000000827054a9a661362a2a359af653245080abaf79525e9c
2024-09-18T19:58:54-06:00  2024-09-19 01:58:54.140 [INF] NTFN: New block: height=861914, sha=0000000000000000000041762976a0bc6aae3023968f68fcf8ca614c4d179a3f
2024-09-18T20:07:08-06:00  2024-09-19 02:07:08.620 [INF] NTFN: New block: height=861915, sha=00000000000000000002908e2d5b2ae748d1b3593df5a15211c7e36dd1fa4ece
2024-09-18T20:11:35-06:00  2024-09-19 02:11:35.797 [INF] NTFN: New block: height=861916, sha=0000000000000000000232b8cc019a3b6a9939d45b46288f7fcc3550896ae663
2024-09-18T20:41:27-06:00  2024-09-19 02:41:27.320 [INF] NTFN: New block: height=861917, sha=00000000000000000002ef08333fb11a1a87548933b2a86c772ffb2b4d9f5c92
2024-09-18T20:42:49-06:00  2024-09-19 02:42:49.821 [INF] NTFN: New block: height=861918, sha=000000000000000000025e9da73bf14afd48d41552a1227772b86f41e2c6f371
2024-09-18T20:51:10-06:00  2024-09-19 02:51:10.387 [WRN] CHRE: The chain backend has an insufficient number of connected outbound peers (0 connected, expected minimum is 6) which can be a security issue. Connect to more trusted nodes manually if necessary.
2024-09-18T20:52:10-06:00  2024-09-19 02:52:10.388 [WRN] CHRE: The chain backend has an insufficient number of connected outbound peers (0 connected, expected minimum is 6) which can be a security issue. Connect to more trusted nodes manually if necessary.
2024-09-18T20:53:10-06:00  2024-09-19 02:53:10.390 [WRN] CHRE: The chain backend has an insufficient number of connected outbound peers (3 connected, expected minimum is 6) which can be a security issue. Connect to more trusted nodes manually if necessary.
2024-09-18T20:54:10-06:00  2024-09-19 02:54:10.390 [WRN] CHRE: The chain backend has an insufficient number of connected outbound peers (5 connected, expected minimum is 6) which can be a security issue. Connect to more trusted nodes manually if necessary.
2024-09-18T20:58:50-06:00  2024-09-19 02:58:50.553 [INF] NTFN: New block: height=861919, sha=00000000000000000002395859337e58675a7ba0bea976c42ebef3278984ecd2
2024-09-18T21:01:48-06:00  2024-09-19 03:01:48.029 [INF] NTFN: New block: height=861920, sha=00000000000000000002c2a3b57af0b0a49c3536bc87dd0522f8d422d5322399
2024-09-18T21:03:32-06:00  2024-09-19 03:03:32.720 [INF] NTFN: New block: height=861921, sha=00000000000000000001d3199b00ce9fb5a6738689128893a06713dbdae1edfa
2024-09-18T21:08:57-06:00  2024-09-19 03:08:57.473 [INF] NTFN: New block: height=861922, sha=00000000000000000000eb50772e747260109279a789dc558aa2b78905787e9a
2024-09-18T21:31:58-06:00  2024-09-19 03:31:58.012 [INF] NTFN: New block: height=861923, sha=000000000000000000027206e7c0343744a2d6ee708af85bcbfa50805310f061
2024-09-18T21:51:16-06:00  2024-09-19 03:51:16.251 [INF] NTFN: New block: height=861924, sha=000000000000000000011dd9b59c37f06a62f30acd289c4140fdd6fb09dcfc70
2024-09-18T21:57:42-06:00  2024-09-19 03:57:42.143 [INF] RPCS: [debuglevel] changing debug level to: CRTR=debug,LNWL=debug
2024-09-18T21:58:44-06:00  2024-09-19 03:58:44.387 [DBG] LNWL: filterManager updated moving median to: 1496 sat/kb
2024-09-18T22:03:12-06:00  2024-09-19 04:03:12.308 [DBG] LNWL: Filtering block 861925 (00000000000000000001d1fe76b768424fc7b47e1ec8bbcdd9a9993f8f021bfe) with 3201 transactions
2024-09-18T22:03:12-06:00  2024-09-19 04:03:12.456 [INF] NTFN: New block: height=861925, sha=00000000000000000001d1fe76b768424fc7b47e1ec8bbcdd9a9993f8f021bfe
2024-09-18T22:03:44-06:00  2024-09-19 04:03:44.385 [DBG] LNWL: filterManager updated moving median to: 1360 sat/kb
2024-09-18T22:08:44-06:00  2024-09-19 04:08:44.439 [DBG] LNWL: filterManager updated moving median to: 1424 sat/kb
2024-09-18T22:10:22-06:00  2024-09-19 04:10:22.087 [DBG] LNWL: Filtering block 861926 (0000000000000000000160ae56569d0dff843bee21a51a9574cd7086421c22d3) with 5420 transactions
2024-09-18T22:10:22-06:00  2024-09-19 04:10:22.248 [INF] NTFN: New block: height=861926, sha=0000000000000000000160ae56569d0dff843bee21a51a9574cd7086421c22d3
2024-09-18T22:13:44-06:00  2024-09-19 04:13:44.385 [DBG] LNWL: filterManager updated moving median to: 1660 sat/kb
2024-09-18T22:13:49-06:00  2024-09-19 04:13:49.468 [DBG] LNWL: Filtering block 861927 (00000000000000000000bcfa55ef200a027c0300f176d91d9f360162b5753265) with 7355 transactions
2024-09-18T22:13:49-06:00  2024-09-19 04:13:49.625 [INF] NTFN: New block: height=861927, sha=00000000000000000000bcfa55ef200a027c0300f176d91d9f360162b5753265
2024-09-18T22:18:44-06:00  2024-09-19 04:18:44.385 [DBG] LNWL: filterManager updated moving median to: 1360 sat/kb
2024-09-18T22:23:44-06:00  2024-09-19 04:23:44.384 [DBG] LNWL: filterManager updated moving median to: 1424 sat/kb
2024-09-18T22:28:44-06:00  2024-09-19 04:28:44.387 [DBG] LNWL: filterManager updated moving median to: 1360 sat/kb
2024-09-18T22:33:44-06:00  2024-09-19 04:33:44.389 [DBG] LNWL: filterManager updated moving median to: 1424 sat/kb
2024-09-18T22:38:44-06:00  2024-09-19 04:38:44.389 [DBG] LNWL: filterManager updated moving median to: 1424 sat/kb
2024-09-18T22:43:44-06:00  2024-09-19 04:43:44.389 [DBG] LNWL: filterManager updated moving median to: 1660 sat/kb
2024-09-18T22:48:44-06:00  2024-09-19 04:48:44.387 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-18T22:53:44-06:00  2024-09-19 04:53:44.387 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-18T22:58:44-06:00  2024-09-19 04:58:44.385 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-18T23:02:59-06:00  2024-09-19 05:02:59.261 [DBG] LNWL: Filtering block 861928 (0000000000000000000024b8c3a35cc45007ae543c888f7c6343663b72b0788f) with 2525 transactions
2024-09-18T23:02:59-06:00  2024-09-19 05:02:59.367 [INF] NTFN: New block: height=861928, sha=0000000000000000000024b8c3a35cc45007ae543c888f7c6343663b72b0788f
2024-09-18T23:03:44-06:00  2024-09-19 05:03:44.386 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-18T23:08:44-06:00  2024-09-19 05:08:44.388 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-18T23:13:44-06:00  2024-09-19 05:13:44.390 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-18T23:15:50-06:00  2024-09-19 05:15:50.159 [DBG] LNWL: Filtering block 861929 (0000000000000000000216763668591ff887dcd0729f55ea98afbf67b47bfc90) with 3095 transactions
2024-09-18T23:15:50-06:00  2024-09-19 05:15:50.382 [INF] NTFN: New block: height=861929, sha=0000000000000000000216763668591ff887dcd0729f55ea98afbf67b47bfc90
2024-09-18T23:18:44-06:00  2024-09-19 05:18:44.386 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-18T23:21:19-06:00  2024-09-19 05:21:19.470 [DBG] LNWL: Filtering block 861930 (000000000000000000021b80265832ad15ea9be97a5eecb0807ceaf3ec045e1a) with 3117 transactions
2024-09-18T23:21:19-06:00  2024-09-19 05:21:19.672 [INF] NTFN: New block: height=861930, sha=000000000000000000021b80265832ad15ea9be97a5eecb0807ceaf3ec045e1a
2024-09-18T23:23:44-06:00  2024-09-19 05:23:44.386 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-18T23:28:44-06:00  2024-09-19 05:28:44.387 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-18T23:29:20-06:00  2024-09-19 05:29:20.709 [DBG] LNWL: Filtering block 861931 (0000000000000000000129ef18c38ed61ee156d830171791815a6e06a3b4b779) with 3962 transactions
2024-09-18T23:29:20-06:00  2024-09-19 05:29:20.842 [INF] NTFN: New block: height=861931, sha=0000000000000000000129ef18c38ed61ee156d830171791815a6e06a3b4b779
2024-09-18T23:33:44-06:00  2024-09-19 05:33:44.389 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-18T23:38:44-06:00  2024-09-19 05:38:44.386 [DBG] LNWL: filterManager updated moving median to: 2408 sat/kb
2024-09-18T23:43:44-06:00  2024-09-19 05:43:44.389 [DBG] LNWL: filterManager updated moving median to: 2408 sat/kb
2024-09-18T23:48:44-06:00  2024-09-19 05:48:44.390 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-18T23:49:39-06:00  2024-09-19 05:49:39.356 [DBG] LNWL: Filtering block 861932 (000000000000000000002bd2d1a44400f12648afeb2eb07f20c020f0a9dfbfac) with 3609 transactions
2024-09-18T23:49:39-06:00  2024-09-19 05:49:39.479 [INF] NTFN: New block: height=861932, sha=000000000000000000002bd2d1a44400f12648afeb2eb07f20c020f0a9dfbfac
2024-09-18T23:53:44-06:00  2024-09-19 05:53:44.388 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-18T23:58:03-06:00  2024-09-19 05:58:03.019 [DBG] LNWL: Filtering block 861933 (00000000000000000000e9202e92f258cb29e79f7c56da7da06cdc592922af2e) with 4273 transactions
2024-09-18T23:58:03-06:00  2024-09-19 05:58:03.181 [INF] NTFN: New block: height=861933, sha=00000000000000000000e9202e92f258cb29e79f7c56da7da06cdc592922af2e
2024-09-18T23:58:44-06:00  2024-09-19 05:58:44.390 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T00:03:44-06:00  2024-09-19 06:03:44.385 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T00:06:05-06:00  2024-09-19 06:06:05.518 [DBG] LNWL: Filtering block 861934 (000000000000000000022c2e66e85483cc8acd172b7d7078f9a3a97ee3178516) with 4055 transactions
2024-09-19T00:06:05-06:00  2024-09-19 06:06:05.655 [INF] NTFN: New block: height=861934, sha=000000000000000000022c2e66e85483cc8acd172b7d7078f9a3a97ee3178516
2024-09-19T00:08:44-06:00  2024-09-19 06:08:44.389 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T00:13:44-06:00  2024-09-19 06:13:44.389 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T00:18:44-06:00  2024-09-19 06:18:44.386 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T00:19:54-06:00  2024-09-19 06:19:54.200 [DBG] LNWL: Filtering block 861935 (000000000000000000006a866493c304e213c40f613a45405d663764a6eaff21) with 2772 transactions
2024-09-19T00:19:54-06:00  2024-09-19 06:19:54.479 [INF] NTFN: New block: height=861935, sha=000000000000000000006a866493c304e213c40f613a45405d663764a6eaff21
2024-09-19T00:23:44-06:00  2024-09-19 06:23:44.389 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T00:27:15-06:00  2024-09-19 06:27:15.144 [DBG] LNWL: Filtering block 861936 (00000000000000000000ff0fcdd87eee931c5b858fc118c525b359258480e2e7) with 1654 transactions
2024-09-19T00:27:15-06:00  2024-09-19 06:27:15.317 [INF] NTFN: New block: height=861936, sha=00000000000000000000ff0fcdd87eee931c5b858fc118c525b359258480e2e7
2024-09-19T00:28:44-06:00  2024-09-19 06:28:44.387 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T00:30:47-06:00  2024-09-19 06:30:47.461 [DBG] LNWL: Filtering block 861937 (000000000000000000009983d0205cb9682da8416521792f4674368c3ebe39c4) with 4961 transactions
2024-09-19T00:30:47-06:00  2024-09-19 06:30:47.624 [INF] NTFN: New block: height=861937, sha=000000000000000000009983d0205cb9682da8416521792f4674368c3ebe39c4
2024-09-19T00:33:44-06:00  2024-09-19 06:33:44.387 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T00:38:44-06:00  2024-09-19 06:38:44.387 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T00:43:44-06:00  2024-09-19 06:43:44.387 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T00:46:58-06:00  2024-09-19 06:46:58.929 [DBG] LNWL: Filtering block 861938 (000000000000000000008d69a4b9d5c553880e647bc5379a31a69fb01fd8865c) with 2675 transactions
2024-09-19T00:46:59-06:00  2024-09-19 06:46:59.049 [INF] NTFN: New block: height=861938, sha=000000000000000000008d69a4b9d5c553880e647bc5379a31a69fb01fd8865c
2024-09-19T00:48:44-06:00  2024-09-19 06:48:44.390 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T00:53:44-06:00  2024-09-19 06:53:44.387 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T00:58:44-06:00  2024-09-19 06:58:44.387 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T01:03:44-06:00  2024-09-19 07:03:44.390 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T01:08:44-06:00  2024-09-19 07:08:44.388 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T01:13:44-06:00  2024-09-19 07:13:44.389 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T01:18:44-06:00  2024-09-19 07:18:44.387 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T01:23:44-06:00  2024-09-19 07:23:44.389 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T01:27:16-06:00  2024-09-19 07:27:16.581 [DBG] LNWL: Filtering block 861939 (0000000000000000000274b9ab9b404a739683f928f3783f3c887dd8bfe932eb) with 3393 transactions
2024-09-19T01:27:16-06:00  2024-09-19 07:27:16.718 [INF] NTFN: New block: height=861939, sha=0000000000000000000274b9ab9b404a739683f928f3783f3c887dd8bfe932eb
2024-09-19T01:27:29-06:00  2024-09-19 07:27:29.608 [DBG] LNWL: Filtering block 861940 (0000000000000000000290081bd6561b13c7f84d0b3c23279961aedf1d253cd1) with 3624 transactions
2024-09-19T01:27:29-06:00  2024-09-19 07:27:29.756 [INF] NTFN: New block: height=861940, sha=0000000000000000000290081bd6561b13c7f84d0b3c23279961aedf1d253cd1
2024-09-19T01:27:33-06:00  2024-09-19 07:27:33.890 [DBG] LNWL: Filtering block 861941 (000000000000000000015832730def0587914e5158b1045479f123625a2dfc8a) with 1796 transactions
2024-09-19T01:27:34-06:00  2024-09-19 07:27:34.082 [INF] NTFN: New block: height=861941, sha=000000000000000000015832730def0587914e5158b1045479f123625a2dfc8a
2024-09-19T01:28:44-06:00  2024-09-19 07:28:44.390 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T01:33:44-06:00  2024-09-19 07:33:44.389 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T01:38:44-06:00  2024-09-19 07:38:44.391 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T01:43:44-06:00  2024-09-19 07:43:44.387 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T01:47:43-06:00  2024-09-19 07:47:43.154 [DBG] LNWL: Filtering block 861942 (00000000000000000001d16f315e3061fe13f4af5f4005ada843f05ec6848ea4) with 3552 transactions
2024-09-19T01:47:43-06:00  2024-09-19 07:47:43.316 [INF] NTFN: New block: height=861942, sha=00000000000000000001d16f315e3061fe13f4af5f4005ada843f05ec6848ea4
2024-09-19T01:48:44-06:00  2024-09-19 07:48:44.390 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T01:48:59-06:00  2024-09-19 07:48:59.805 [DBG] LNWL: Filtering block 861943 (0000000000000000000129dfcc8ce3db05b8191368bc8ee84805f0d107e4c323) with 1812 transactions
2024-09-19T01:48:59-06:00  2024-09-19 07:48:59.941 [INF] NTFN: New block: height=861943, sha=0000000000000000000129dfcc8ce3db05b8191368bc8ee84805f0d107e4c323
2024-09-19T01:53:44-06:00  2024-09-19 07:53:44.387 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T01:58:44-06:00  2024-09-19 07:58:44.387 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T01:58:53-06:00  2024-09-19 07:58:53.149 [DBG] LNWL: Filtering block 861944 (00000000000000000001ba3009c10238d5f63823adf639d0cfb357a98f81a873) with 4680 transactions
2024-09-19T01:58:53-06:00  2024-09-19 07:58:53.376 [INF] NTFN: New block: height=861944, sha=00000000000000000001ba3009c10238d5f63823adf639d0cfb357a98f81a873
2024-09-19T02:03:44-06:00  2024-09-19 08:03:44.389 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T02:08:44-06:00  2024-09-19 08:08:44.387 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T02:13:44-06:00  2024-09-19 08:13:44.391 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T02:18:44-06:00  2024-09-19 08:18:44.388 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T02:23:44-06:00  2024-09-19 08:23:44.390 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T02:28:44-06:00  2024-09-19 08:28:44.391 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T02:33:44-06:00  2024-09-19 08:33:44.390 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T02:34:30-06:00  2024-09-19 08:34:30.913 [DBG] LNWL: Filtering block 861945 (00000000000000000000f8d6ca76353f77bdc71f935cb13f62338ef1125bf661) with 3473 transactions
2024-09-19T02:34:31-06:00  2024-09-19 08:34:31.043 [INF] NTFN: New block: height=861945, sha=00000000000000000000f8d6ca76353f77bdc71f935cb13f62338ef1125bf661
2024-09-19T02:34:55-06:00  2024-09-19 08:34:55.055 [DBG] LNWL: Filtering block 861946 (00000000000000000000cb1c466ea12f0ee1c5370495e8b8d16138210488f047) with 3980 transactions
2024-09-19T02:34:55-06:00  2024-09-19 08:34:55.202 [INF] NTFN: New block: height=861946, sha=00000000000000000000cb1c466ea12f0ee1c5370495e8b8d16138210488f047
2024-09-19T02:38:44-06:00  2024-09-19 08:38:44.390 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T02:43:44-06:00  2024-09-19 08:43:44.388 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T02:46:15-06:00  2024-09-19 08:46:15.772 [DBG] LNWL: Filtering block 861947 (0000000000000000000037e98028c15e09e13202aef95ea2c38e0ca1ec0dc354) with 2823 transactions
2024-09-19T02:46:15-06:00  2024-09-19 08:46:15.938 [INF] NTFN: New block: height=861947, sha=0000000000000000000037e98028c15e09e13202aef95ea2c38e0ca1ec0dc354
2024-09-19T02:48:44-06:00  2024-09-19 08:48:44.391 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T02:49:47-06:00  2024-09-19 08:49:47.173 [DBG] LNWL: Filtering block 861948 (000000000000000000010f2d84329dfedacc1c2031e0f472fda7963a85c8c26d) with 5059 transactions
2024-09-19T02:49:47-06:00  2024-09-19 08:49:47.339 [INF] NTFN: New block: height=861948, sha=000000000000000000010f2d84329dfedacc1c2031e0f472fda7963a85c8c26d
2024-09-19T02:52:25-06:00  2024-09-19 08:52:25.729 [DBG] LNWL: Filtering block 861949 (000000000000000000018309102ef93938760dbe370713dd67aa8826a7a1470d) with 6080 transactions
2024-09-19T02:52:25-06:00  2024-09-19 08:52:25.882 [INF] NTFN: New block: height=861949, sha=000000000000000000018309102ef93938760dbe370713dd67aa8826a7a1470d
2024-09-19T02:52:53-06:00  2024-09-19 08:52:53.842 [DBG] LNWL: Filtering block 861950 (00000000000000000000530d0e30ccf7deeace122dcc99f2668a06c6dad83629) with 7873 transactions
2024-09-19T02:52:54-06:00  2024-09-19 08:52:54.006 [INF] NTFN: New block: height=861950, sha=00000000000000000000530d0e30ccf7deeace122dcc99f2668a06c6dad83629
2024-09-19T02:53:44-06:00  2024-09-19 08:53:44.389 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T02:58:44-06:00  2024-09-19 08:58:44.390 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T03:03:44-06:00  2024-09-19 09:03:44.388 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T03:08:44-06:00  2024-09-19 09:08:44.387 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T03:10:48-06:00  2024-09-19 09:10:48.449 [DBG] LNWL: Filtering block 861951 (00000000000000000002ad17ad7773312f0d70883123c0e9877c6a07631d42b1) with 3375 transactions
2024-09-19T03:10:48-06:00  2024-09-19 09:10:48.597 [INF] NTFN: New block: height=861951, sha=00000000000000000002ad17ad7773312f0d70883123c0e9877c6a07631d42b1
2024-09-19T03:13:44-06:00  2024-09-19 09:13:44.391 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T03:18:44-06:00  2024-09-19 09:18:44.387 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T03:23:44-06:00  2024-09-19 09:23:44.388 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T03:28:44-06:00  2024-09-19 09:28:44.387 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T03:33:44-06:00  2024-09-19 09:33:44.387 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T03:38:44-06:00  2024-09-19 09:38:44.390 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T03:43:44-06:00  2024-09-19 09:43:44.389 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T03:48:44-06:00  2024-09-19 09:48:44.391 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T03:49:44-06:00  2024-09-19 09:49:44.665 [DBG] LNWL: Filtering block 861952 (00000000000000000002d3a1c85b6c2a8b69f2b569fde9433d31d82d36c9d041) with 3408 transactions
2024-09-19T03:49:44-06:00  2024-09-19 09:49:44.799 [INF] NTFN: New block: height=861952, sha=00000000000000000002d3a1c85b6c2a8b69f2b569fde9433d31d82d36c9d041
2024-09-19T03:53:44-06:00  2024-09-19 09:53:44.387 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T03:55:07-06:00  2024-09-19 09:55:07.478 [DBG] LNWL: Filtering block 861953 (00000000000000000001b59b9627c6dd97e541787b2cd2ed48405d32156e81bb) with 4223 transactions
2024-09-19T03:55:07-06:00  2024-09-19 09:55:07.641 [INF] NTFN: New block: height=861953, sha=00000000000000000001b59b9627c6dd97e541787b2cd2ed48405d32156e81bb
2024-09-19T03:58:44-06:00  2024-09-19 09:58:44.392 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T04:03:44-06:00  2024-09-19 10:03:44.391 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T04:08:44-06:00  2024-09-19 10:08:44.390 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T04:13:44-06:00  2024-09-19 10:13:44.392 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T04:18:44-06:00  2024-09-19 10:18:44.386 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T04:23:05-06:00  2024-09-19 10:23:05.890 [DBG] LNWL: Filtering block 861954 (0000000000000000000214a5f10f5f185c834ebde3b5f305ba743b7bf4ef5ebb) with 3236 transactions
2024-09-19T04:23:06-06:00  2024-09-19 10:23:06.166 [INF] NTFN: New block: height=861954, sha=0000000000000000000214a5f10f5f185c834ebde3b5f305ba743b7bf4ef5ebb
2024-09-19T04:23:44-06:00  2024-09-19 10:23:44.391 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T04:28:44-06:00  2024-09-19 10:28:44.391 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T04:33:44-06:00  2024-09-19 10:33:44.391 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T04:37:55-06:00  2024-09-19 10:37:55.585 [DBG] LNWL: Filtering block 861955 (00000000000000000001484e7829d35726ca77f421bd60f0944bacbac215d91b) with 3897 transactions
2024-09-19T04:37:55-06:00  2024-09-19 10:37:55.766 [INF] NTFN: New block: height=861955, sha=00000000000000000001484e7829d35726ca77f421bd60f0944bacbac215d91b
2024-09-19T04:38:44-06:00  2024-09-19 10:38:44.388 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T04:42:43-06:00  2024-09-19 10:42:43.519 [DBG] LNWL: Filtering block 861956 (000000000000000000009c95194c9fe971932ca19df2ab63f69d1e67f26e05ea) with 3034 transactions
2024-09-19T04:42:43-06:00  2024-09-19 10:42:43.663 [INF] NTFN: New block: height=861956, sha=000000000000000000009c95194c9fe971932ca19df2ab63f69d1e67f26e05ea
2024-09-19T04:43:44-06:00  2024-09-19 10:43:44.389 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T04:48:44-06:00  2024-09-19 10:48:44.388 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T04:49:12-06:00  2024-09-19 10:49:12.085 [DBG] LNWL: Filtering block 861957 (00000000000000000000206a182c661c52ca52789bb22844bb3c562d3c31fd99) with 3872 transactions
2024-09-19T04:49:12-06:00  2024-09-19 10:49:12.236 [INF] NTFN: New block: height=861957, sha=00000000000000000000206a182c661c52ca52789bb22844bb3c562d3c31fd99
2024-09-19T04:53:44-06:00  2024-09-19 10:53:44.387 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T04:56:06-06:00  2024-09-19 10:56:06.713 [DBG] LNWL: Filtering block 861958 (00000000000000000002465fe72b8e9ee54d90fb660b76b1abb7964138eff7d1) with 3297 transactions
2024-09-19T04:56:06-06:00  2024-09-19 10:56:06.853 [INF] NTFN: New block: height=861958, sha=00000000000000000002465fe72b8e9ee54d90fb660b76b1abb7964138eff7d1
2024-09-19T04:58:44-06:00  2024-09-19 10:58:44.391 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T05:03:44-06:00  2024-09-19 11:03:44.390 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T05:06:03-06:00  2024-09-19 11:06:03.625 [DBG] LNWL: Filtering block 861959 (0000000000000000000148b6344695e6e527811ac778acdab3f3ca7c03faaaf5) with 2970 transactions
2024-09-19T05:06:03-06:00  2024-09-19 11:06:03.807 [INF] NTFN: New block: height=861959, sha=0000000000000000000148b6344695e6e527811ac778acdab3f3ca7c03faaaf5
2024-09-19T05:06:14-06:00  2024-09-19 11:06:14.391 [DBG] LNWL: Filtering block 861960 (0000000000000000000232dce52563566d6770eee8179a6b6ee2a22f10e76836) with 7769 transactions
2024-09-19T05:06:14-06:00  2024-09-19 11:06:14.563 [INF] NTFN: New block: height=861960, sha=0000000000000000000232dce52563566d6770eee8179a6b6ee2a22f10e76836
2024-09-19T05:08:44-06:00  2024-09-19 11:08:44.390 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T05:13:44-06:00  2024-09-19 11:13:44.390 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T05:18:44-06:00  2024-09-19 11:18:44.388 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T05:23:44-06:00  2024-09-19 11:23:44.390 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T05:28:44-06:00  2024-09-19 11:28:44.388 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T05:33:44-06:00  2024-09-19 11:33:44.389 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T05:35:07-06:00  2024-09-19 11:35:07.444 [DBG] LNWL: Filtering block 861961 (000000000000000000010ea21ca3492d2eff35289c997fa3058582b82b36b5bb) with 3743 transactions
2024-09-19T05:35:07-06:00  2024-09-19 11:35:07.606 [INF] NTFN: New block: height=861961, sha=000000000000000000010ea21ca3492d2eff35289c997fa3058582b82b36b5bb
2024-09-19T05:38:44-06:00  2024-09-19 11:38:44.390 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T05:43:44-06:00  2024-09-19 11:43:44.395 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T05:48:44-06:00  2024-09-19 11:48:44.387 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T05:50:26-06:00  2024-09-19 11:50:26.154 [DBG] LNWL: Filtering block 861962 (000000000000000000003c48eee73c444da70aefbe9e889a7c138419f40159e3) with 3831 transactions
2024-09-19T05:50:26-06:00  2024-09-19 11:50:26.289 [INF] NTFN: New block: height=861962, sha=000000000000000000003c48eee73c444da70aefbe9e889a7c138419f40159e3
2024-09-19T05:50:49-06:00  2024-09-19 11:50:49.286 [DBG] LNWL: Filtering block 861963 (00000000000000000000c6334d98d5c118ed19589fda2a1a2ce40e1bd31e7a07) with 4800 transactions
2024-09-19T05:50:49-06:00  2024-09-19 11:50:49.507 [INF] NTFN: New block: height=861963, sha=00000000000000000000c6334d98d5c118ed19589fda2a1a2ce40e1bd31e7a07
2024-09-19T05:51:33-06:00  2024-09-19 11:51:33.643 [DBG] LNWL: Filtering block 861964 (000000000000000000005fb42300a87a7e38b1227713fc4e0eb7bfe9c5fd9da0) with 7890 transactions
2024-09-19T05:51:33-06:00  2024-09-19 11:51:33.811 [INF] NTFN: New block: height=861964, sha=000000000000000000005fb42300a87a7e38b1227713fc4e0eb7bfe9c5fd9da0
2024-09-19T05:53:44-06:00  2024-09-19 11:53:44.392 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T05:54:43-06:00  2024-09-19 11:54:43.915 [DBG] LNWL: Filtering block 861965 (00000000000000000001783b53b6554f83f940770f8de73f02b23fd2dcc835d1) with 6095 transactions
2024-09-19T05:54:44-06:00  2024-09-19 11:54:44.074 [INF] NTFN: New block: height=861965, sha=00000000000000000001783b53b6554f83f940770f8de73f02b23fd2dcc835d1
2024-09-19T05:58:44-06:00  2024-09-19 11:58:44.388 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T06:03:44-06:00  2024-09-19 12:03:44.390 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T06:08:44-06:00  2024-09-19 12:08:44.388 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T06:13:13-06:00  2024-09-19 12:13:13.730 [DBG] LNWL: Filtering block 861966 (0000000000000000000080cc95a6e7a9e6e120ea6f0c1b9409eafae5eb3e6844) with 3543 transactions
2024-09-19T06:13:13-06:00  2024-09-19 12:13:13.894 [INF] NTFN: New block: height=861966, sha=0000000000000000000080cc95a6e7a9e6e120ea6f0c1b9409eafae5eb3e6844
2024-09-19T06:13:44-06:00  2024-09-19 12:13:44.388 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T06:18:44-06:00  2024-09-19 12:18:44.389 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T06:23:44-06:00  2024-09-19 12:23:44.390 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T06:26:37-06:00  2024-09-19 12:26:37.328 [DBG] LNWL: Filtering block 861967 (0000000000000000000053d4dcfd9448d68301de177ef26e64d32a196fe9cb32) with 3622 transactions
2024-09-19T06:26:37-06:00  2024-09-19 12:26:37.484 [INF] NTFN: New block: height=861967, sha=0000000000000000000053d4dcfd9448d68301de177ef26e64d32a196fe9cb32
2024-09-19T06:28:44-06:00  2024-09-19 12:28:44.389 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T06:31:34-06:00  2024-09-19 12:31:34.629 [DBG] LNWL: Filtering block 861968 (000000000000000000008e70955b851db3187765fe2eb9cbfa6cd8160d7b6965) with 1946 transactions
2024-09-19T06:31:34-06:00  2024-09-19 12:31:34.786 [INF] NTFN: New block: height=861968, sha=000000000000000000008e70955b851db3187765fe2eb9cbfa6cd8160d7b6965
2024-09-19T06:33:44-06:00  2024-09-19 12:33:44.388 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T06:33:47-06:00  2024-09-19 12:33:47.758 [DBG] LNWL: Filtering block 861969 (000000000000000000007152c2511277e56675e0fcc1714e0ee8f9937e446b47) with 6000 transactions
2024-09-19T06:33:47-06:00  2024-09-19 12:33:47.920 [INF] NTFN: New block: height=861969, sha=000000000000000000007152c2511277e56675e0fcc1714e0ee8f9937e446b47
2024-09-19T06:38:44-06:00  2024-09-19 12:38:44.389 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T06:42:47-06:00  2024-09-19 12:42:47.307 [DBG] LNWL: Filtering block 861970 (0000000000000000000258d08c6d86e8ce3fa5cb8cea6bf1797808afe7224607) with 3003 transactions
2024-09-19T06:42:47-06:00  2024-09-19 12:42:47.464 [INF] NTFN: New block: height=861970, sha=0000000000000000000258d08c6d86e8ce3fa5cb8cea6bf1797808afe7224607
2024-09-19T06:43:44-06:00  2024-09-19 12:43:44.387 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T06:48:44-06:00  2024-09-19 12:48:44.391 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T06:53:44-06:00  2024-09-19 12:53:44.392 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T06:58:44-06:00  2024-09-19 12:58:44.390 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T07:02:42-06:00  2024-09-19 13:02:42.291 [DBG] LNWL: Filtering block 861971 (00000000000000000002ebcfa50e85dd528ab38e65d56dcc28016b235d3fce25) with 3338 transactions
2024-09-19T07:02:42-06:00  2024-09-19 13:02:42.443 [INF] NTFN: New block: height=861971, sha=00000000000000000002ebcfa50e85dd528ab38e65d56dcc28016b235d3fce25
2024-09-19T07:03:15-06:00  2024-09-19 13:03:15.889 [DBG] LNWL: Filtering block 861972 (00000000000000000002233769fbb4f58d68694f8f39bc5f2e5113b50d47cf21) with 4658 transactions
2024-09-19T07:03:16-06:00  2024-09-19 13:03:16.084 [INF] NTFN: New block: height=861972, sha=00000000000000000002233769fbb4f58d68694f8f39bc5f2e5113b50d47cf21
2024-09-19T07:03:44-06:00  2024-09-19 13:03:44.389 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T07:08:44-06:00  2024-09-19 13:08:44.390 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T07:13:44-06:00  2024-09-19 13:13:44.418 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T07:16:50-06:00  2024-09-19 13:16:50.152 [DBG] LNWL: Filtering block 861973 (00000000000000000002b480fadb7b1a73e82ca48b74f67401e65b069d057ed0) with 3897 transactions
2024-09-19T07:16:50-06:00  2024-09-19 13:16:50.295 [INF] NTFN: New block: height=861973, sha=00000000000000000002b480fadb7b1a73e82ca48b74f67401e65b069d057ed0
2024-09-19T07:18:44-06:00  2024-09-19 13:18:44.390 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T07:19:02-06:00  2024-09-19 13:19:02.931 [DBG] LNWL: Filtering block 861974 (000000000000000000006edf1a9daaee6b0a14b9acdb25b079a10c623465f545) with 6922 transactions
2024-09-19T07:19:03-06:00  2024-09-19 13:19:03.091 [INF] NTFN: New block: height=861974, sha=000000000000000000006edf1a9daaee6b0a14b9acdb25b079a10c623465f545
2024-09-19T07:23:44-06:00  2024-09-19 13:23:44.389 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T07:28:44-06:00  2024-09-19 13:28:44.391 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T07:33:44-06:00  2024-09-19 13:33:44.394 [DBG] LNWL: filterManager updated moving median to: 1896 sat/kb
2024-09-19T07:38:44-06:00  2024-09-19 13:38:44.390 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T07:42:11-06:00  2024-09-19 13:42:11.992 [DBG] LNWL: Filtering block 861975 (00000000000000000002737bff24bb9526121a70fd919b22ed7f470ebe420df1) with 4792 transactions
2024-09-19T07:42:12-06:00  2024-09-19 13:42:12.127 [INF] NTFN: New block: height=861975, sha=00000000000000000002737bff24bb9526121a70fd919b22ed7f470ebe420df1
2024-09-19T07:43:44-06:00  2024-09-19 13:43:44.387 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T07:48:44-06:00  2024-09-19 13:48:44.386 [DBG] LNWL: filterManager updated moving median to: 1992 sat/kb
2024-09-19T07:53:44-06:00  2024-09-19 13:53:44.386 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T07:58:44-06:00  2024-09-19 13:58:44.388 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-19T08:03:44-06:00  2024-09-19 14:03:44.401 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-19T08:08:44-06:00  2024-09-19 14:08:44.390 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-19T08:13:44-06:00  2024-09-19 14:13:44.388 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-19T08:18:44-06:00  2024-09-19 14:18:44.388 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-19T08:21:45-06:00  2024-09-19 14:21:45.609 [DBG] LNWL: Filtering block 861976 (000000000000000000019da9e833a99cb9e107c88fd29f4698cd7cc699e8746e) with 6067 transactions
2024-09-19T08:21:45-06:00  2024-09-19 14:21:45.768 [INF] NTFN: New block: height=861976, sha=000000000000000000019da9e833a99cb9e107c88fd29f4698cd7cc699e8746e
2024-09-19T08:23:44-06:00  2024-09-19 14:23:44.390 [DBG] LNWL: filterManager updated moving median to: 2408 sat/kb
2024-09-19T08:27:04-06:00  2024-09-19 14:27:04.332 [DBG] LNWL: Filtering block 861977 (00000000000000000000a27a29d9eb22d74bd8543fc2006a89e5c72ff06953ef) with 6268 transactions
2024-09-19T08:27:04-06:00  2024-09-19 14:27:04.506 [INF] NTFN: New block: height=861977, sha=00000000000000000000a27a29d9eb22d74bd8543fc2006a89e5c72ff06953ef
2024-09-19T08:28:44-06:00  2024-09-19 14:28:44.390 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-19T08:33:44-06:00  2024-09-19 14:33:44.390 [DBG] LNWL: filterManager updated moving median to: 2408 sat/kb
2024-09-19T08:38:44-06:00  2024-09-19 14:38:44.387 [DBG] LNWL: filterManager updated moving median to: 2408 sat/kb
2024-09-19T08:43:44-06:00  2024-09-19 14:43:44.389 [DBG] LNWL: filterManager updated moving median to: 2408 sat/kb
2024-09-19T08:44:46-06:00  2024-09-19 14:44:46.152 [DBG] LNWL: Filtering block 861978 (000000000000000000015e91dc8b5335cebd98381e0745f4471a08b5d281d840) with 5883 transactions
2024-09-19T08:44:46-06:00  2024-09-19 14:44:46.302 [INF] NTFN: New block: height=861978, sha=000000000000000000015e91dc8b5335cebd98381e0745f4471a08b5d281d840
2024-09-19T08:48:44-06:00  2024-09-19 14:48:44.388 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-19T08:53:44-06:00  2024-09-19 14:53:44.391 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-19T08:56:44-06:00  2024-09-19 14:56:44.701 [DBG] LNWL: Filtering block 861979 (00000000000000000000b657f66f6d93b19e476ef35b57e0f8785a71e828d1f3) with 4586 transactions
2024-09-19T08:56:44-06:00  2024-09-19 14:56:44.867 [INF] NTFN: New block: height=861979, sha=00000000000000000000b657f66f6d93b19e476ef35b57e0f8785a71e828d1f3
2024-09-19T08:57:39-06:00  2024-09-19 14:57:39.250 [DBG] LNWL: Filtering block 861980 (00000000000000000002461a8ad0b8dfa9061eb7c839737cd36306581b4b4995) with 4716 transactions
2024-09-19T08:57:39-06:00  2024-09-19 14:57:39.379 [INF] NTFN: New block: height=861980, sha=00000000000000000002461a8ad0b8dfa9061eb7c839737cd36306581b4b4995
2024-09-19T08:58:44-06:00  2024-09-19 14:58:44.391 [DBG] LNWL: filterManager updated moving median to: 2408 sat/kb
2024-09-19T09:03:44-06:00  2024-09-19 15:03:44.391 [DBG] LNWL: filterManager updated moving median to: 2408 sat/kb
2024-09-19T09:07:42-06:00  2024-09-19 15:07:42.753 [DBG] LNWL: Filtering block 861981 (000000000000000000028e95a1403f7af047a3357d2adbc66219a21385f1eaea) with 3569 transactions
2024-09-19T09:07:42-06:00  2024-09-19 15:07:42.929 [INF] NTFN: New block: height=861981, sha=000000000000000000028e95a1403f7af047a3357d2adbc66219a21385f1eaea
2024-09-19T09:08:44-06:00  2024-09-19 15:08:44.388 [DBG] LNWL: filterManager updated moving median to: 2408 sat/kb
2024-09-19T09:13:44-06:00  2024-09-19 15:13:44.391 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-19T09:18:44-06:00  2024-09-19 15:18:44.392 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-19T09:23:44-06:00  2024-09-19 15:23:44.387 [DBG] LNWL: filterManager updated moving median to: 2296 sat/kb
2024-09-19T09:28:44-06:00  2024-09-19 15:28:44.390 [DBG] LNWL: filterManager updated moving median to: 2192 sat/kb
2024-09-19T09:33:44-06:00  2024-09-19 15:33:44.387 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T09:34:55-06:00  2024-09-19 15:34:55.391 [DBG] LNWL: Filtering block 861982 (0000000000000000000113ea6f20113c520ded0e824fd226229dff8552135fe1) with 3591 transactions
2024-09-19T09:34:55-06:00  2024-09-19 15:34:55.526 [INF] NTFN: New block: height=861982, sha=0000000000000000000113ea6f20113c520ded0e824fd226229dff8552135fe1
2024-09-19T09:38:44-06:00  2024-09-19 15:38:44.393 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T09:43:44-06:00  2024-09-19 15:43:44.392 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T09:45:50-06:00  2024-09-19 15:45:50.436 [DBG] LNWL: Filtering block 861983 (00000000000000000000bd0b28711a8783a7daa2ab5e1604ea8f76e3bd2329e6) with 2922 transactions
2024-09-19T09:45:50-06:00  2024-09-19 15:45:50.591 [INF] NTFN: New block: height=861983, sha=00000000000000000000bd0b28711a8783a7daa2ab5e1604ea8f76e3bd2329e6
2024-09-19T09:48:44-06:00  2024-09-19 15:48:44.387 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T09:49:23-06:00  2024-09-19 15:49:23.104 [DBG] LNWL: Filtering block 861984 (0000000000000000000076090f1eeafa9f0a88f751fa684589859fe3dfbad35e) with 3567 transactions
2024-09-19T09:49:23-06:00  2024-09-19 15:49:23.246 [INF] NTFN: New block: height=861984, sha=0000000000000000000076090f1eeafa9f0a88f751fa684589859fe3dfbad35e
2024-09-19T09:53:44-06:00  2024-09-19 15:53:44.390 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T09:58:44-06:00  2024-09-19 15:58:44.390 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T10:02:06-06:00  2024-09-19 16:02:06.620 [DBG] LNWL: Filtering block 861985 (00000000000000000002f26536c9530379f8e4983f4a7702ce24e9b45620a166) with 3221 transactions
2024-09-19T10:02:06-06:00  2024-09-19 16:02:06.838 [INF] NTFN: New block: height=861985, sha=00000000000000000002f26536c9530379f8e4983f4a7702ce24e9b45620a166
2024-09-19T10:03:44-06:00  2024-09-19 16:03:44.390 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T10:08:44-06:00  2024-09-19 16:08:44.391 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T10:09:24-06:00  2024-09-19 16:09:24.255 [DBG] LNWL: Filtering block 861986 (000000000000000000021d502442526973f467fb72cdacebf954d55c4fb81931) with 3911 transactions
2024-09-19T10:09:24-06:00  2024-09-19 16:09:24.422 [INF] NTFN: New block: height=861986, sha=000000000000000000021d502442526973f467fb72cdacebf954d55c4fb81931
2024-09-19T10:13:44-06:00  2024-09-19 16:13:44.389 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T10:18:44-06:00  2024-09-19 16:18:44.391 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T10:19:59-06:00  2024-09-19 16:19:59.296 [DBG] LNWL: Filtering block 861987 (000000000000000000008a5d960639a3db06d7c7c305553e319ab48744b194f2) with 3725 transactions
2024-09-19T10:19:59-06:00  2024-09-19 16:19:59.428 [INF] NTFN: New block: height=861987, sha=000000000000000000008a5d960639a3db06d7c7c305553e319ab48744b194f2
2024-09-19T10:23:44-06:00  2024-09-19 16:23:44.389 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T10:28:44-06:00  2024-09-19 16:28:44.389 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T10:33:44-06:00  2024-09-19 16:33:44.390 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T10:36:09-06:00  2024-09-19 16:36:09.699 [DBG] LNWL: Filtering block 861988 (000000000000000000002a86d97395fcdfaeb0de6cf2c5ebab36cc40be310401) with 3624 transactions
2024-09-19T10:36:09-06:00  2024-09-19 16:36:09.843 [INF] NTFN: New block: height=861988, sha=000000000000000000002a86d97395fcdfaeb0de6cf2c5ebab36cc40be310401
2024-09-19T10:38:44-06:00  2024-09-19 16:38:44.390 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb
2024-09-19T10:43:44-06:00  2024-09-19 16:43:44.391 [DBG] LNWL: filterManager updated moving median to: 2088 sat/kb

@bitromortac
Copy link
Collaborator

Maybe just this line, but I think that's not the problem:

The chain backend has an insufficient number of connected outbound peers

It may help if you could provide a goroutine dump. You'd need to start with a profile port open, see https://docs.lightning.engineering/lightning-network-tools/lnd/debugging_lnd#capturing-pprof-data-with-lnd.

Then it would be great to see the contents of the file created by curl http://localhost:PORT/debug/pprof/goroutine?debug=2 > goroutines.pprof (with PORT set to the according profile port).

@chrisguida
Copy link

Ahh darn, changing the command line will require rebuilding the docker image. I'll see if I can do that soon.

@guggero
Copy link
Collaborator

guggero commented Sep 20, 2024

You can also add that value to your config file (without the leading dashes, --).

@chrisguida
Copy link

chrisguida commented Sep 21, 2024

Here it is
goroutines.tar.gz

Btw I noticed the S9 configurator is probably stuck in this loop trying to add a bad watchtower. I removed the tower and the chain sync completed, and the graph sync started like this:

2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.934 [INF] LTND: Chain backend is fully synced (end_height=862186)!
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.934 [INF] NANN: HostAnnouncer starting
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.934 [WRN] HLCK: check: disk space configured with 0 attempts, skipping it
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.934 [WRN] HLCK: check: tls configured with 0 attempts, skipping it
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.934 [INF] LNWL: SigPool starting
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.936 [INF] NTFN: New block epoch subscription
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.936 [INF] NTFN: New block epoch subscription
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.936 [INF] BTCN: Broadcaster now active
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.936 [INF] CHNF: ChannelNotifier starting
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.936 [INF] PRNF: PeerNotifier starting
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.937 [INF] HSWC: HtlcNotifier starting
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.937 [INF] SWPR: TxPublisher starting...
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.937 [INF] SWPR: Sweeper starting
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.937 [INF] NTFN: New block epoch subscription
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.937 [INF] NTFN: New block epoch subscription
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.937 [INF] UTXN: UTXO nursery starting
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.938 [INF] NTFN: New block epoch subscription
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.945 [INF] BRAR: Breach arbiter starting
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.945 [INF] FNDG: Funding manager starting
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.945 [INF] BRAR: Starting contract observer, watching for breaches.
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.946 [INF] HSWC: HTLC Switch starting
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.946 [INF] NTFN: New block epoch subscription
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.946 [INF] NTFN: New block epoch subscription
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.946 [INF] CNCT: ChainArbitrator starting with config: budget=[tolocal=0 BTC tolocalratio=0.5 anchorcpfp=0 BTC anchorcpfpratio=0.5 deadlinehtlc=0 BTC deadlinehtlcratio=0.5 nodeadlinehtlc=0 BTC nodeadlinehtlcratio=0.5]
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.946 [INF] CNCT: Creating ChannelArbitrators for 1 active channels
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.961 [INF] CNCT: Close observer for ChannelPoint([]:1) active
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.962 [INF] CNCT: ChannelArbitrator([]:1): starting state=StateDefault, trigger=chainTrigger, triggerHeight=862186
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.962 [INF] DISC: Authenticated Gossiper starting
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.962 [INF] NTFN: New block epoch subscription
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.962 [INF] NTFN: New block epoch subscription
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.963 [INF] CRTR: Channel Router starting
2024-09-20T21:38:29-06:00  2024-09-21 03:38:29.964 [INF] CRTR: FilteredChainView starting
2024-09-20T21:38:30-06:00  2024-09-21 03:38:30.050 [INF] CRTR: Filtering chain using 28111 channels active
2024-09-20T21:38:30-06:00  2024-09-21 03:38:30.052 [INF] CRTR: Prune tip for Channel Graph: height=851721, hash=000000000000000000015b0b6733113b09feb206f1308dfe4a20903c16337115
2024-09-20T21:38:30-06:00  2024-09-21 03:38:30.052 [INF] CRTR: Syncing channel graph from height=851721 (hash=000000000000000000015b0b6733113b09feb206f1308dfe4a20903c16337115) to height=862186 (hash=00000000000000000001cd99bcca18a43d87f88f366d960b13ce74adc488e296)
2024-09-20T21:38:30-06:00  2024-09-21 03:38:30.052 [INF] CRTR: Filtering block for closed channels, at height: 851722
2024-09-20T21:38:30-06:00  2024-09-21 03:38:30.147 [INF] CRTR: Filtering block for closed channels, at height: 851723
2024-09-20T21:38:30-06:00  2024-09-21 03:38:30.255 [INF] CRTR: Filtering block for closed channels, at height: 851724
2024-09-20T21:38:30-06:00  2024-09-21 03:38:30.346 [INF] CRTR: Filtering block for closed channels, at height: 851725
2024-09-20T21:38:30-06:00  2024-09-21 03:38:30.450 [INF] CRTR: Filtering block for closed channels, at height: 851726
2024-09-20T21:38:30-06:00  2024-09-21 03:38:30.576 [INF] CRTR: Filtering block for closed channels, at height: 851727
2024-09-20T21:38:30-06:00  2024-09-21 03:38:30.676 [INF] CRTR: Filtering block for closed channels, at height: 851728
2024-09-20T21:38:30-06:00  2024-09-21 03:38:30.775 [INF] CRTR: Filtering block for closed channels, at height: 851729

..etc.

I'm actually not seeing the loop iterate, so I think maybe it's just actually stuck on the lncli wtclient add command.

The watchtower was 02093be3766099196bcbb9e2d5c2aedb5c87fabfac85c6d3d8ed4f7ad0dce579b7@yz5xfhhkyu2ntssgvgs7nwnt42mj6lovouzdtlbh5zkdnzfx5g3stwad.onion:9911 in case you want to try to recreate.

I'm not sure why this command would hang forever and never time out, nor am I sure why LND would not simply continue with the chain/graph sync while a watchtower is in the process of being added. Seems like maybe two bugs, one on the S9 side and the other on the LND side.

I added the watchtower back and the node is stuck again, so this is definitely the problem.

@GeorgeTsagk
Copy link
Collaborator

The watchtower was 02093be3766099196bcbb9e2d5c2aedb5c87fabfac85c6d3d8ed4f7ad0dce579b7@yz5xfhhkyu2ntssgvgs7nwnt42mj6lovouzdtlbh5zkdnzfx5g3stwad.onion:9911 in case you want to try to recreate.

I'm not sure why this command would hang forever and never time out, nor am I sure why LND would not simply continue with the chain/graph sync while a watchtower is in the process of being added. Seems like maybe two bugs, one on the S9 side and the other on the LND side.

Can you capture the WTWR logs when this hang happens?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Unintended code behaviour needs triage
Projects
None yet
Development

No branches or pull requests

6 participants