Giter Club home page Giter Club logo

bitcoind-startos's People

Contributors

bigbossrabbit avatar bitcoinmechanic avatar blu-j avatar brettinthewoods avatar chrisguida avatar dominion5254 avatar dr-bonez avatar elvece avatar fanquake avatar gstart9 avatar k0gen avatar kn0wmad avatar mattdhill avatar proofofkeags avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

bitcoind-startos's Issues

Bitcoin only connects to .onion nodes, not regular nodes over tor

The bitcoind configuration resulting from "Disable clearnet" being off (I believe uninentionally) results in bitcoind only connecting to .onion nodes, whereas it seems the better and preferred behavior should be to connect to .onion nodes as well as regular publicly-reachable nodes via tor.

Current options when "Disable clearnet" is turned off:
-onion=172.18.0.1:9050 , -proxy=172.18.0.1:9050 , and -externalip=onionaddress.onion and in the config, onlynet=onion

onlynet=onion configuration option means in all cases we will only ever connect to .onion nodes when making outgoing connections.
-proxy=172.18.0.1:9050 is there but unused/unusable, making me believe we're actually wanting to connect to regular nodes via tor as well.

The fix is to use the onlynet=ipv4 config option settings and make sure we keep -proxy=172.18.0.1:9050
As long as proxy=172.18.0.1 is present, we will use tor for all outbound connections regardless of whether it's to .onion or a public ipv4 address. -onion=172.18.0.1 specifies a proxy to use only when specifically connecting to .onion addresses (so that you can use 2 different proxies depending on the destination).

Advantages:

Possibly faster speeds - 3 hops through tor + 1 hop to the ip = 4 hops instead of 6 that onlynet=onion brings. Also may bring some speed advantages due to the current attacks on tor hidden services. And the final way it may speed things up is, IF the bitcoin network of .onion addresses is sybil'd to death, you may be only connecting to 1 node even if you make 8 outgoing connections to .onion nodes. This reasoning also leads us to possible advantage number 2:

More "secure" against sybil attacks - It costs nothing to spin up more onion addresses and point them all at the same node, making sybil attacks easier. Bitcoin has some semblance of sybil resistance built into its ip choices, never selecting more than 1 ip per class c (/24 network). At least getting IPv4s in different ranges has real costs, unlike making a million new .onion addresses.

Add action to delete txindex if it gets corrupted

Environment:

  • raspi 8gb
  • dev box (its in the office, regular black embassy plugged into ethernet in wall behind my desk)
  • crucial drive (our default product we ship, but I do not know the specifics of the SSD, I can run a command to find out if provided)

Steps to recreate:

  • fresh install of Bitcoin Core
  • toggle txindex on
  • all other config settings are default (ie. full archival node)
  • let sync for ~1 day (was at about 4%)
  • logs indicated a crash loop with the following recurring message (relevant details at end):

Other notes:

  • Related (see comment with other links as well)
2022-03-29T11:09:06Z Bitcoin Core version v22.0.0 (release build)
2022-03-29T11:09:06Z InitParameterInteraction: parameter interaction: -externalip set -> setting -discover=0
2022-03-29T11:09:06Z Assuming ancestors of block 00000000000000000008a89e854d57e5667df88f1cdef6fde2fbca1de5b639ad have valid signatures.
2022-03-29T11:09:06Z Setting nMinimumChainWork=00000000000000000000000000000000000000001fa4663bbbe19f82de910280
2022-03-29T11:09:06Z Using the 'standard' SHA256 implementation
2022-03-29T11:09:06Z Default data directory /root/.bitcoin
2022-03-29T11:09:06Z Using data directory /root/.bitcoin
2022-03-29T11:09:06Z Config file: /root/.bitcoin/bitcoin.conf
2022-03-29T11:09:06Z Config file arg: avoidpartialspends="1"
2022-03-29T11:09:06Z Config file arg: bind="0.0.0.0:8333"
2022-03-29T11:09:06Z Config file arg: disablewallet="0"
2022-03-29T11:09:06Z Config file arg: discardfee="0.0001"
2022-03-29T11:09:06Z Config file arg: listen="1"
2022-03-29T11:09:06Z Config file arg: maxmempool="300"
2022-03-29T11:09:06Z Config file arg: mempoolexpiry="336"
2022-03-29T11:09:06Z Config file arg: persistmempool="1"
2022-03-29T11:09:06Z Config file arg: rpcallowip="0.0.0.0/0"
2022-03-29T11:09:06Z Config file arg: rpcbind=****
2022-03-29T11:09:06Z Config file arg: rpcpassword=****
2022-03-29T11:09:06Z Config file arg: rpcserialversion="1"
2022-03-29T11:09:06Z Config file arg: rpcservertimeout="30"
2022-03-29T11:09:06Z Config file arg: rpcthreads="1"
2022-03-29T11:09:06Z Config file arg: rpcuser=****
2022-03-29T11:09:06Z Config file arg: rpcworkqueue="16"
2022-03-29T11:09:06Z Config file arg: txindex="1"
2022-03-29T11:09:06Z Config file arg: whitelist="172.18.0.0/16"
2022-03-29T11:09:06Z Config file arg: zmqpubrawblock="tcp://0.0.0.0:28332"
2022-03-29T11:09:06Z Config file arg: zmqpubrawtx="tcp://0.0.0.0:28333"
2022-03-29T11:09:06Z Command-line arg: conf="/root/.bitcoin/bitcoin.conf"
2022-03-29T11:09:06Z Command-line arg: datadir="/root/.bitcoin"
2022-03-29T11:09:06Z Command-line arg: externalip="slctejn6ynv4ajs4pz3uxjfelkz7zefggvgbibtcme5hjsmf7enksrad.onion"
2022-03-29T11:09:06Z Command-line arg: onion="172.18.0.1:9050"
2022-03-29T11:09:06Z Using at most 125 automatic connections (1048576 file descriptors available)
2022-03-29T11:09:06Z Using 16 MiB out of 32/2 requested for signature cache, able to store 524288 elements
2022-03-29T11:09:06Z Using 16 MiB out of 32/2 requested for script execution cache, able to store 524288 elements
2022-03-29T11:09:06Z Script verification uses 3 additional threads
2022-03-29T11:09:06Z scheduler thread start
2022-03-29T11:09:06Z WARNING: the RPC server is not safe to expose to untrusted networks such as the public internet
2022-03-29T11:09:06Z HTTP: creating work queue of depth 16
2022-03-29T11:09:06Z Config options rpcuser and rpcpassword will soon be deprecated. Locally-run instances may remove rpcuser to use cookie-based auth, or may be replaced with rpcauth. Please see share/rpcauth for rpcauth auth generation.
2022-03-29T11:09:06Z HTTP: starting 1 worker threads
2022-03-29T11:09:06Z Using wallet directory /root/.bitcoin
2022-03-29T11:09:06Z init message: Verifying wallet(s)…
2022-03-29T11:09:06Z init message: Loading banlist…
2022-03-29T11:09:06Z SetNetworkActive: true
2022-03-29T11:09:06Z Failed to read fee estimates from /root/.bitcoin/fee_estimates.dat. Continue anyway.
2022-03-29T11:09:06Z AddLocal(slctejn6ynv4ajs4pz3uxjfelkz7zefggvgbibtcme5hjsmf7enksrad.onion:8333,4)
2022-03-29T11:09:06Z Using /16 prefix for IP bucketing
2022-03-29T11:09:06Z Cache configuration:
2022-03-29T11:09:06Z * Using 2.0 MiB for block index database
2022-03-29T11:09:06Z * Using 56.0 MiB for transaction index database
2022-03-29T11:09:06Z * Using 8.0 MiB for chain state database
2022-03-29T11:09:06Z * Using 384.0 MiB for in-memory UTXO set (plus up to 286.1 MiB of unused mempool space)
2022-03-29T11:09:06Z init message: Loading block index…
2022-03-29T11:09:06Z Switching active chainstate to Chainstate [ibd] @ height -1 (null)
2022-03-29T11:09:06Z Opening LevelDB in /root/.bitcoin/blocks/index
2022-03-29T11:09:06Z Opened LevelDB successfully
2022-03-29T11:09:06Z Using obfuscation key for /root/.bitcoin/blocks/index: 0000000000000000
2022-03-29T11:09:17Z LoadBlockIndexDB: last block file = 421
2022-03-29T11:09:17Z LoadBlockIndexDB: last block file info: CBlockFileInfo(blocks=156, size=129708690, heights=393979...394143, time=2016-01-19...2016-01-20)
2022-03-29T11:09:17Z Checking all blk files are present...
2022-03-29T11:09:17Z Opening LevelDB in /root/.bitcoin/chainstate
2022-03-29T11:09:17Z Opened LevelDB successfully
2022-03-29T11:09:17Z Using obfuscation key for /root/.bitcoin/chainstate: 3d0879cfb3246fa2
2022-03-29T11:09:18Z Loaded best chain: hashBestChain=0000000000000000051a6089df758eb75106fabf9a51e46c1dd9f4bc249e2e4a height=394133 date=2016-01-20T07:08:11Z progress=0.147453
2022-03-29T11:09:18Z init message: Verifying blocks…
2022-03-29T11:09:18Z Verifying last 6 blocks at level 3
2022-03-29T11:09:18Z [0%]...[16%]...[33%]...[50%]...[66%]...[83%]...[99%]...[DONE].
2022-03-29T11:09:19Z No coin database inconsistencies in last 6 blocks (6258 transactions)
2022-03-29T11:09:19Z  block index           13062ms
2022-03-29T11:09:19Z Opening LevelDB in /root/.bitcoin/indexes/txindex
2022-03-29T11:09:19Z Opened LevelDB successfully
2022-03-29T11:09:19Z Using obfuscation key for /root/.bitcoin/indexes/txindex: 0000000000000000
2022-03-29T11:09:19Z txindex thread start
2022-03-29T11:09:19Z txindex is enabled at height 394133
2022-03-29T11:09:19Z block tree size = 729500
2022-03-29T11:09:19Z nBestHeight = 394133
2022-03-29T11:09:19Z txindex thread exit
2022-03-29T11:09:19Z loadblk thread start
2022-03-29T11:09:19Z Failed to open mempool file from disk. Continuing anyway.
2022-03-29T11:09:19Z loadblk thread exit
2022-03-29T11:09:19Z Bound to 0.0.0.0:8333
2022-03-29T11:09:19Z Bound to 127.0.0.1:8334
2022-03-29T11:09:19Z init message: Loading P2P addresses…
2022-03-29T11:09:19Z torcontrol thread start
2022-03-29T11:09:19Z Loaded 16730 addresses from peers.dat  113ms
2022-03-29T11:09:19Z Missing or invalid file /root/.bitcoin/anchors.dat
2022-03-29T11:09:19Z 0 block-relay-only anchors will be tried for connections.
2022-03-29T11:09:19Z init message: Starting network threads…
2022-03-29T11:09:19Z net thread start
2022-03-29T11:09:19Z addcon thread start
2022-03-29T11:09:19Z dnsseed thread start
2022-03-29T11:09:19Z init message: Done loading
2022-03-29T11:09:19Z Waiting 300 seconds before querying DNS seeds.
2022-03-29T11:09:19Z opencon thread start
2022-03-29T11:09:19Z msghand thread start
2022-03-29T11:09:20Z New outbound peer connected: version: 70015, blocks=729542, peer=0 (outbound-full-relay)
2022-03-29T11:09:20Z Synchronizing blockheaders, height: 729542 (~100.00%)
2022-03-29T11:09:21Z UpdateTip: new best=00000000000000000837d8df4299feed2573af12778081bf041fe8f8ebd63df8 height=394134 version=0x00000004 log2_work=83.943519 tx=104619196 date='2016-01-20T07:09:42Z' progress=0.147454 cache=0.9MiB(6790txo)
2022-03-29T11:09:21Z UpdateTip: new best=000000000000000007fd5fa7c84e7f71f2fb0c2ee1625fb226daa5750ee25502 height=394135 version=0x00000004 log2_work=83.943557 tx=104620197 date='2016-01-20T07:19:19Z' progress=0.147455 cache=1.9MiB(14324txo)
2022-03-29T11:09:21Z Fatal LevelDB error: Corruption: block checksum mismatch: /root/.bitcoin/indexes/txindex/032765.ldb
2022-03-29T11:09:21Z You can use -debug=leveldb to get more complete diagnostic messages
2022-03-29T11:09:21Z

************************
EXCEPTION: 15dbwrapper_error
Fatal LevelDB error: Corruption: block checksum mismatch: /root/.bitcoin/indexes/txindex/032765.ldb
bitcoin in scheduler

[bug]: sometimes rpc work queue gets exhausted

This causes all downstream services to freak out

# docker exec -it bitcoind.embassy bitcoin-cli getblockchaininfo
error: couldn't parse reply from server

WARNING: request rejected because http work queue depth exceeded, it can be increased with the -rpcworkqueue= setting

[bug] Unable to parse settings.json

2022-04-25T15:52:54.203097Z Apr 25 16:52:54.202 ERROR embassy::manager: service just started. not issuing crash notification
2022-04-25T15:52:54.203540Z Apr 25 16:52:54.203 ERROR embassy::manager: service crashed: 1: Error updating blockchain info: error: timeout on transient error: Could not connect to the server 127.0.0.1:8332
2022-04-25T15:52:54.203540Z Make sure the bitcoind server is running and that you are connecting to the correct RPC port.
2022-04-25T15:52:54.203540Z Error: Failed loading settings file:
2022-04-25T15:52:54.203540Z - Unable to parse settings file /root/.bitcoin/settings.json

EDIT by @ProofOfKeags: Solution here is to disable its use since it is solely for Bitcoin Core GUI functionality.

Repeated wall of text in logs

Screen Shot 2021-11-27 at 12 34 30 PM
2021-11-27T20:45:59.650951Z Error updating blockchain info: error code: -1
2021-11-27T20:45:59.651743Z error message:
2021-11-27T20:45:59.652226Z getblockchaininfo
2021-11-27T20:45:59.652558Z Returns an object containing various state info regarding blockchain processing.
2021-11-27T20:45:59.652946Z
2021-11-27T20:45:59.653382Z Result:
2021-11-27T20:45:59.653857Z { (json object)
2021-11-27T20:45:59.654197Z "chain" : "str", (string) current network name (main, test, regtest)
2021-11-27T20:45:59.654507Z "blocks" : n, (numeric) the height of the most-work fully-validated chain. The genesis block has height 0
2021-11-27T20:45:59.654834Z "headers" : n, (numeric) the current number of headers we have validated
2021-11-27T20:45:59.655292Z "bestblockhash" : "str", (string) the hash of the currently best block
2021-11-27T20:45:59.655696Z "difficulty" : n, (numeric) the current difficulty
2021-11-27T20:45:59.656101Z "mediantime" : n, (numeric) median time for the current best block
2021-11-27T20:45:59.656831Z "verificationprogress" : n, (numeric) estimate of verification progress [0..1]
2021-11-27T20:45:59.657216Z "initialblockdownload" : true|false, (boolean) (debug information) estimate of whether this node is in Initial Block Download mode
2021-11-27T20:45:59.657585Z "chainwork" : "hex", (string) total amount of work in active chain, in hexadecimal
2021-11-27T20:45:59.658003Z "size_on_disk" : n, (numeric) the estimated size of the block and undo files on disk
2021-11-27T20:45:59.658874Z "pruned" : true|false, (boolean) if the blocks are subject to pruning
2021-11-27T20:45:59.659387Z "pruneheight" : n, (numeric) lowest-height complete block stored (only present if pruning is enabled)
2021-11-27T20:45:59.659880Z "automatic_pruning" : true|false, (boolean) whether automatic pruning is enabled (only present if pruning is enabled)
2021-11-27T20:45:59.660283Z "prune_target_size" : n, (numeric) the target size used by pruning (only present if automatic pruning is enabled)
2021-11-27T20:45:59.660792Z "softforks" : { (json object) status of softforks
2021-11-27T20:45:59.661158Z "xxxx" : { (json object) name of the softfork
2021-11-27T20:45:59.661478Z "type" : "str", (string) one of "buried", "bip9"
2021-11-27T20:45:59.661814Z "bip9" : { (json object) status of bip9 softforks (only for "bip9" type)
2021-11-27T20:45:59.662140Z "status" : "str", (string) one of "defined", "started", "locked_in", "active", "failed"
2021-11-27T20:45:59.662560Z "bit" : n, (numeric) the bit (0-28) in the block version field used to signal this softfork (only for "started" status)
2021-11-27T20:45:59.662987Z "start_time" : xxx, (numeric) the minimum median time past of a block at which the bit gains its meaning
2021-11-27T20:45:59.664301Z "timeout" : xxx, (numeric) the median time past of a block at which the deployment is considered failed if not yet locked in
2021-11-27T20:45:59.664926Z "since" : n, (numeric) height of the first block to which the status applies
2021-11-27T20:45:59.665545Z "min_activation_height" : n, (numeric) minimum height of blocks for which the rules may be enforced
2021-11-27T20:45:59.666238Z "statistics" : { (json object) numeric statistics about BIP9 signalling for a softfork (only for "started" status)
2021-11-27T20:45:59.667210Z "period" : n, (numeric) the length in blocks of the BIP9 signalling period
2021-11-27T20:45:59.668406Z "threshold" : n, (numeric) the number of blocks with the version bit set required to activate the feature
2021-11-27T20:45:59.669542Z "elapsed" : n, (numeric) the number of blocks elapsed since the beginning of the current period
2021-11-27T20:45:59.670294Z "count" : n, (numeric) the number of blocks with the version bit set in the current period
2021-11-27T20:45:59.671458Z "possible" : true|false (boolean) returns false if there are not enough blocks left in this period to pass activation threshold
2021-11-27T20:45:59.674608Z }
2021-11-27T20:45:59.676325Z },
2021-11-27T20:45:59.676735Z "height" : n, (numeric) height of the first block which the rules are or will be enforced (only for "buried" type, or "bip9" type with "active" status)
2021-11-27T20:45:59.677055Z "active" : true|false (boolean) true if the rules are enforced for the mempool and the next block
2021-11-27T20:45:59.677383Z },
2021-11-27T20:45:59.677680Z ...
2021-11-27T20:45:59.678310Z },
2021-11-27T20:45:59.679707Z "warnings" : "str" (string) any network and blockchain warnings
2021-11-27T20:45:59.680199Z }
2021-11-27T20:45:59.680520Z
2021-11-27T20:45:59.680821Z Examples:
2021-11-27T20:45:59.681152Z > bitcoin-cli getblockchaininfo
2021-11-27T20:45:59.681462Z > curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "getblockchaininfo", "params": []}' -H 'content-type: text/plain;' http://127.0.0.1:8332/
2021-11-27T20:45:59.681767Z
2021-11-27T20:45:59.682072Z

[bug]: Reindex Action Copy Fix

Prerequisites

  • I have searched for existing issues that already report this problem.

Device

Phone/tablet

Device OS

MacOS

Device OS Version

n/a

Browser

Firefox

Browser Version

n/a

Current Behavior

image

Bitcoin nodes are no longer pruned by default

Expected Behavior

copy change

Steps to Reproduce

Actions page -> Reindex

Anything else?

No response

[feat]: Offer more info on "transaction index" as many will want this - and it's off by default

Prerequisites

  • I have searched for existing issues that already suggest this feature.

Describe the Feature Request

There would be something within bitcoind's config that alerts a user to transaction index setting and tells them why they would turn this on. I suggest this assuming that people generally agree that it should be off by default - my actual preference would be for it to be on by default, and then the info can say "turn this off if you want to save ~50gb - you won't be able to search for transactions within mempool"

Describe the Use Case

People setting up bitcoind initially will make a more informed decision and thus save time in the long run regarding this setting.

Describe Preferred Solution

No response

Describe Alternatives

No response

Anything else?

No response

[bug]: Fix bitcoind manager spamming stderr when bitcoind is not available

Prerequisites

  • I have searched for existing issues that already report this problem, without success.

EmbassyOS Version

0.3.0

Device

Laptop/Desktop

Device OS

Windows

Device OS Version

Windows 10

Browser

Firefox

Browser Version

95.0

Current Behavior

EOS Cant clear notification

Expected Behavior

Either

  1. Notification text only shows once
  2. Notification manages to inform user the error occurred multiple times.

Steps to Reproduce

I don't know what caused bitcoin core to crash or how to trigger notifications on demand.

Anything else?

No response

Update Bitcoind to v22.0

  • Bitcoin Core released v22.0 last September. Note this is NOT '0.22' but '22.0' because Bitcoin Core changed their versioning scheme and we should synchronize with that.
  • Look at any new features in the release notes and ingest relevant config options into the new config. The sample config can be found here
  • #53

Optional:

  • Start9Labs/operations#23

We cannot publish this eagerly, so make sure that when this is done it doesn't make it to production until the dependent services have their commensurate updates.

Edit: We can push this and btc-rpc-proxy out without affecting anything. Btcpay and LND need to have their dependency requirements updated as well for this to work.

[bug]: bitcoind sometimes hard restarts, losing sync progress, even after synced 100%

Sometimes bitcoind just dies. This results in lost sync progress. I recently had this happen and it started resyncing 200 blocks back.

It is not being OOM killed, since there is no record of this in dmesg.

No idea what else it could be

Jan 28 21:42:22 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T21:37:38Z Socks5() connect to yhjkylctf577degc7ufffvg3gsdxgnx64pdhzfujxjgfhbulmtc7yaad.onion:8333 failed: InterruptibleRecv() timeout or other failure
Jan 28 21:53:46 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T21:53:46Z UpdateTip: new best=0000000000000000000847dc41fd2a0f88636d8c34cca72e4987a1571740e68e height=720802 version=0x20800000 log2_work=93.314192 tx=706379614 date='2022-01-28T21:53:18Z' progress=1.000000 cache=141.1MiB(1055756txo)
Jan 28 21:56:14 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T21:56:14Z UpdateTip: new best=0000000000000000000a71cc573d186eb8a76496f41c4f6f72a108b89c717f33 height=720803 version=0x20c00000 log2_work=93.314206 tx=706382750 date='2022-01-28T21:55:48Z' progress=1.000000 cache=141.6MiB(1060232txo)
Jan 28 21:58:40 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T21:58:40Z UpdateTip: new best=00000000000000000005f8cb80c40350bdbd8652dcf0665036f3ed3909529fcd height=720804 version=0x20e00000 log2_work=93.314219 tx=706385939 date='2022-01-28T21:57:56Z' progress=1.000000 cache=142.0MiB(1063005txo)
Jan 28 21:59:04 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T21:59:04Z Pre-allocating up to position 0x1200000 in rev02900.dat
Jan 28 21:59:04 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T21:59:04Z UpdateTip: new best=00000000000000000006c1da699f758005c0a4e52e36a0ce88c931a5b5f96da4 height=720805 version=0x3fff0004 log2_work=93.314233 tx=706389088 date='2022-01-28T21:59:02Z' progress=1.000000 cache=142.0MiB(1063560txo)
Jan 28 21:59:49 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T21:59:49Z UpdateTip: new best=0000000000000000000129a548cfc246b918eea9645a5b6e78e32d8cd8a62444 height=720806 version=0x2fffe004 log2_work=93.314246 tx=706391921 date='2022-01-28T21:59:44Z' progress=1.000000 cache=142.0MiB(1062993txo)
Jan 28 22:01:59 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T22:01:59Z UpdateTip: new best=000000000000000000034084f00db2b7695ea68944c633bfbc794c7fc666bf19 height=720807 version=0x20600000 log2_work=93.314259 tx=706392841 date='2022-01-28T22:01:50Z' progress=1.000000 cache=142.1MiB(1063765txo)
Jan 28 22:06:37 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T22:06:37Z UpdateTip: new best=00000000000000000009a9ac7a914d78101bfa6362e7fdd5ad37465bf5eb62d9 height=720808 version=0x20800000 log2_work=93.314273 tx=706393961 date='2022-01-28T22:05:51Z' progress=1.000000 cache=142.0MiB(1063481txo)
Jan 28 22:08:26 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T22:08:26Z Socks5() connect to rryaasbegshf3ghxi47pl35g7clhy26ea4knvbwibhpfww2voygzyyid.onion:8333 failed: general failure
Jan 28 22:15:50 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T22:15:50Z Leaving block file 2900: CBlockFileInfo(blocks=103, size=132765408, heights=720706...720808, time=2022-01-28...2022-01-28)
Jan 28 22:15:50 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T22:15:50Z Pre-allocating up to position 0x1000000 in blk02901.dat
Jan 28 22:15:50 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T22:15:50Z Pre-allocating up to position 0x100000 in rev02901.dat
Jan 28 22:15:50 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T22:15:50Z UpdateTip: new best=00000000000000000008aebac97838756feed8adb428b56fe57a563480824c63 height=720809 version=0x20004000 log2_work=93.314286 tx=706396215 date='2022-01-28T22:15:46Z' progress=1.000000 cache=142.5MiB(1067300txo)
Jan 28 22:22:44 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T22:22:44Z UpdateTip: new best=000000000000000000052254db4f32b004f73ceb60e7ae0d47a8fb6d01f633e5 height=720810 version=0x20800004 log2_work=93.314300 tx=706397666 date='2022-01-28T22:21:35Z' progress=1.000000 cache=142.5MiB(1067397txo)
Jan 28 22:28:44 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T22:28:44Z UpdateTip: new best=00000000000000000009266b9524f676687fefb5ec0577ea77e9f68a3ae20c32 height=720811 version=0x2000a004 log2_work=93.314313 tx=706399389 date='2022-01-28T22:28:16Z' progress=1.000000 cache=142.8MiB(1069118txo)
Jan 28 22:33:20 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T22:33:20Z UpdateTip: new best=0000000000000000000362091d029aef26dd91819a7737ab475eff312a71ad88 height=720812 version=0x20000000 log2_work=93.314327 tx=706400417 date='2022-01-28T22:33:11Z' progress=1.000000 cache=143.3MiB(1073249txo)
Jan 28 22:47:39 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T22:47:39Z UpdateTip: new best=00000000000000000000a2cdf80983a8aa0b63ea8b5835d60309c9f34f965ccf height=720813 version=0x3fffe004 log2_work=93.314340 tx=706402839 date='2022-01-28T22:47:32Z' progress=1.000000 cache=144.2MiB(1081056txo)
Jan 28 22:48:44 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T22:48:44Z Pre-allocating up to position 0x200000 in rev02901.dat
Jan 28 22:48:44 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T22:48:44Z UpdateTip: new best=0000000000000000000637a189398b0d83c94e38699ccacb77e225d1ba53d698 height=720814 version=0x20400000 log2_work=93.314353 tx=706403374 date='2022-01-28T22:48:30Z' progress=1.000000 cache=144.2MiB(1081273txo)
Jan 28 23:07:18 embassy-2ef08502 f86020a38247[2579]: 2022-01-28T23:05:38Z UpdateTip: new best=000000000000000000060bae026f06f24293ca46bf7c7f89fa08f815d608d220 height=720815 version=0x20e00004 log2_work=93.314367 tx=706405033 date='2022-01-28T23:05:19Z' progress=1.000000 cache=145.6MiB(1092039txo)
Jan 28 23:13:24 embassy-2ef08502 c97087f5efad[2579]: Error updating blockchain info: error: Could not connect to the server 127.0.0.1:8332
Jan 28 23:13:24 embassy-2ef08502 c97087f5efad[2579]: 
Jan 28 23:13:24 embassy-2ef08502 c97087f5efad[2579]: Make sure the bitcoind server is running and that you are connecting to the correct RPC port.
Jan 28 23:13:24 embassy-2ef08502 c97087f5efad[2579]: 
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Bitcoin Core version v0.21.1.0-g194b9b8792d9b0798fdb570b79fa51f1d1f5ebaf (release build)
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z InitParameterInteraction: parameter interaction: -externalip set -> setting -discover=0
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Assuming ancestors of block 0000000000000000000b9d2ec5a352ecba0592946514a92f14319dc2b367fc72 have valid signatures.
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Setting nMinimumChainWork=00000000000000000000000000000000000000001533efd8d716a517fe2c5008
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Using the 'standard' SHA256 implementation
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Default data directory /root/.bitcoin
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Using data directory /root/.bitcoin
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file: /root/.bitcoin/bitcoin.conf
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: avoidpartialspends="1"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: bind="0.0.0.0:8333"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: disablewallet="0"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: discardfee="0.0001"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: listen="1"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: maxmempool="300"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: mempoolexpiry="336"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: persistmempool="1"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: rpcallowip="0.0.0.0/0"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: rpcbind=****
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: rpcpassword=****
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: rpcserialversion="1"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: rpcservertimeout="30"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: rpcthreads="1"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: rpcuser=****
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: rpcworkqueue="16"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: whitelist="172.18.0.0/16"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: zmqpubrawblock="tcp://0.0.0.0:28332"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config file arg: zmqpubrawtx="tcp://0.0.0.0:28333"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Command-line arg: conf="/root/.bitcoin/bitcoin.conf"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Command-line arg: datadir="/root/.bitcoin"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Command-line arg: externalip="wlw7o2xf6sf4yy2wgvs7adc2k3i5qlakqqk4ples7dsx43x7ndf6ciad.onion"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Command-line arg: onion="172.18.0.1:9050"
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Using at most 125 automatic connections (1048576 file descriptors available)
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Using 16 MiB out of 32/2 requested for signature cache, able to store 524288 elements
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Using 16 MiB out of 32/2 requested for script execution cache, able to store 524288 elements
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Script verification uses 3 additional threads
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z scheduler thread start
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z WARNING: the RPC server is not safe to expose to untrusted networks such as the public internet
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z HTTP: creating work queue of depth 16
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Config options rpcuser and rpcpassword will soon be deprecated. Locally-run instances may remove rpcuser to use cookie-based auth, or may be replaced with rpcauth. Please see share/rpcauth for rpcauth auth generation.
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z HTTP: starting 1 worker threads
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Using wallet directory /root/.bitcoin
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z init message: Verifying wallet(s)...
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Using BerkeleyDB version Berkeley DB 4.8.30: (April  9, 2010)
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z Using wallet /root/.bitcoin/wallet.dat
Jan 28 23:13:25 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:25Z BerkeleyEnvironment::Open: LogDir=/root/.bitcoin/database ErrorFile=/root/.bitcoin/db.log
Jan 28 23:13:26 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:26Z init message: Loading banlist...
Jan 28 23:13:26 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:26Z SetNetworkActive: true
Jan 28 23:13:26 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:26Z AddLocal(wlw7o2xf6sf4yy2wgvs7adc2k3i5qlakqqk4ples7dsx43x7ndf6ciad.onion:8333,4)
Jan 28 23:13:27 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:26Z Using /16 prefix for IP bucketing
Jan 28 23:13:27 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:27Z Cache configuration:
Jan 28 23:13:27 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:27Z * Using 2.0 MiB for block index database
Jan 28 23:13:27 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:27Z * Using 8.0 MiB for chain state database
Jan 28 23:13:27 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:27Z * Using 440.0 MiB for in-memory UTXO set (plus up to 286.1 MiB of unused mempool space)
Jan 28 23:13:27 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:27Z init message: Loading block index...
Jan 28 23:13:27 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:27Z Switching active chainstate to Chainstate [ibd] @ height -1 (null)
Jan 28 23:13:27 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:27Z Opening LevelDB in /root/.bitcoin/blocks/index
Jan 28 23:13:27 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:27Z Opened LevelDB successfully
Jan 28 23:13:27 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:27Z Using obfuscation key for /root/.bitcoin/blocks/index: 0000000000000000
Jan 28 23:13:29 embassy-2ef08502 c97087f5efad[2579]: Error updating blockchain info: error code: -28
Jan 28 23:13:29 embassy-2ef08502 c97087f5efad[2579]: error message:
Jan 28 23:13:29 embassy-2ef08502 c97087f5efad[2579]: Loading block index...
Jan 28 23:13:29 embassy-2ef08502 c97087f5efad[2579]: 
Jan 28 23:13:35 embassy-2ef08502 c97087f5efad[2579]: Error updating blockchain info: error code: -28
Jan 28 23:13:35 embassy-2ef08502 c97087f5efad[2579]: error message:
Jan 28 23:13:35 embassy-2ef08502 c97087f5efad[2579]: Loading block index...
Jan 28 23:13:35 embassy-2ef08502 c97087f5efad[2579]: 
Jan 28 23:13:40 embassy-2ef08502 c97087f5efad[2579]: Error updating blockchain info: error code: -28
Jan 28 23:13:40 embassy-2ef08502 c97087f5efad[2579]: error message:
Jan 28 23:13:40 embassy-2ef08502 c97087f5efad[2579]: Loading block index...
Jan 28 23:13:40 embassy-2ef08502 c97087f5efad[2579]: 
Jan 28 23:13:45 embassy-2ef08502 c97087f5efad[2579]: Error updating blockchain info: error code: -28
Jan 28 23:13:45 embassy-2ef08502 c97087f5efad[2579]: error message:
Jan 28 23:13:45 embassy-2ef08502 c97087f5efad[2579]: Loading block index...
Jan 28 23:13:45 embassy-2ef08502 c97087f5efad[2579]: 
Jan 28 23:13:50 embassy-2ef08502 c97087f5efad[2579]: Error updating blockchain info: error code: -28
Jan 28 23:13:50 embassy-2ef08502 c97087f5efad[2579]: error message:
Jan 28 23:13:50 embassy-2ef08502 c97087f5efad[2579]: Loading block index...
Jan 28 23:13:50 embassy-2ef08502 c97087f5efad[2579]: 
Jan 28 23:13:55 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:55Z LoadBlockIndexDB: last block file = 2901
Jan 28 23:13:55 embassy-2ef08502 c97087f5efad[2579]: Error updating blockchain info: error code: -28
Jan 28 23:13:55 embassy-2ef08502 c97087f5efad[2579]: error message:
Jan 28 23:13:55 embassy-2ef08502 c97087f5efad[2579]: Loading block index...
Jan 28 23:13:55 embassy-2ef08502 c97087f5efad[2579]: 
Jan 28 23:13:55 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:55Z LoadBlockIndexDB: last block file info: CBlockFileInfo(blocks=3, size=4218518, heights=720809...720811, time=2022-01-28...2022-01-28)
Jan 28 23:13:55 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:55Z Checking all blk files are present...
Jan 28 23:13:56 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:56Z Opening LevelDB in /root/.bitcoin/chainstate
Jan 28 23:13:57 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:57Z Opened LevelDB successfully
Jan 28 23:13:57 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:57Z Using obfuscation key for /root/.bitcoin/chainstate: 29512183616839f7
Jan 28 23:13:58 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:58Z Loaded best chain: hashBestChain=0000000000000000000958676181a13f0cdb71d9d8ccfacd0569050c3494416d height=720618 date=2022-01-27T15:54:16Z progress=0.999440
Jan 28 23:13:58 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:58Z init message: Rewinding blocks...
Jan 28 23:13:58 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:58Z FlushStateToDisk: write coins cache to disk (0 coins, 0kB) started
Jan 28 23:13:58 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:58Z FlushStateToDisk: write coins cache to disk (0 coins, 0kB) completed (0.00s)
Jan 28 23:13:58 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:58Z init message: Verifying blocks...
Jan 28 23:13:58 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:58Z Verifying last 6 blocks at level 3
Jan 28 23:14:00 embassy-2ef08502 c97087f5efad[2579]: Error updating blockchain info: error code: -28
Jan 28 23:14:00 embassy-2ef08502 c97087f5efad[2579]: error message:
Jan 28 23:14:00 embassy-2ef08502 c97087f5efad[2579]: Verifying blocks...
Jan 28 23:14:00 embassy-2ef08502 c97087f5efad[2579]: 
Jan 28 23:14:05 embassy-2ef08502 c97087f5efad[2579]: Error updating blockchain info: error code: -28
Jan 28 23:14:05 embassy-2ef08502 c97087f5efad[2579]: error message:
Jan 28 23:14:05 embassy-2ef08502 c97087f5efad[2579]: Verifying blocks...
Jan 28 23:14:05 embassy-2ef08502 c97087f5efad[2579]: 
-------------
Jan 28 23:15:31 embassy-2ef08502 c97087f5efad[2579]: 
Jan 28 23:15:36 embassy-2ef08502 c97087f5efad[2579]: Error updating blockchain info: error code: -28
Jan 28 23:15:36 embassy-2ef08502 c97087f5efad[2579]: error message:
Jan 28 23:15:36 embassy-2ef08502 c97087f5efad[2579]: Verifying blocks...
Jan 28 23:15:36 embassy-2ef08502 c97087f5efad[2579]: 
Jan 28 23:15:40 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:13:58Z [0%]...[16%]...[33%]...[50%]...[66%]...[83%]...[99%]...[DONE].
Jan 28 23:15:40 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:40Z No coin database inconsistencies in last 6 blocks (7936 transactions)
Jan 28 23:15:40 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:40Z  block index          133678ms
Jan 28 23:15:40 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:40Z init message: Loading wallet...
Jan 28 23:15:40 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:40Z BerkeleyEnvironment::Open: LogDir=/root/.bitcoin/database ErrorFile=/root/.bitcoin/db.log
Jan 28 23:15:41 embassy-2ef08502 c97087f5efad[2579]: Error updating blockchain info: error code: -28
Jan 28 23:15:41 embassy-2ef08502 c97087f5efad[2579]: error message:
Jan 28 23:15:41 embassy-2ef08502 c97087f5efad[2579]: Loading wallet...
Jan 28 23:15:41 embassy-2ef08502 c97087f5efad[2579]: 
Jan 28 23:15:42 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:42Z [default wallet] Wallet File Version = 169900
Jan 28 23:15:42 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:42Z [default wallet] Keys: 2001 plaintext, 0 encrypted, 6109 w/ metadata, 2001 total. Unknown wallet records: 0
Jan 28 23:15:42 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:42Z [default wallet] Wallet completed loading in            1490ms
Jan 28 23:15:42 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:42Z [default wallet] setKeyPool.size() = 2000
Jan 28 23:15:42 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:42Z [default wallet] mapWallet.size() = 731
Jan 28 23:15:42 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:42Z [default wallet] m_address_book.size() = 4108
Jan 28 23:15:42 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:42Z loadblk thread start
Jan 28 23:15:42 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:42Z block tree size = 720813
Jan 28 23:15:42 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:42Z nBestHeight = 720618
Jan 28 23:15:42 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:42Z torcontrol thread start
Jan 28 23:15:42 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:42Z Bound to 0.0.0.0:8333
Jan 28 23:15:42 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:42Z Bound to 127.0.0.1:8334
Jan 28 23:15:42 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:42Z init message: Loading P2P addresses...
Jan 28 23:15:45 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:45Z Loaded 67209 addresses from peers.dat  3086ms
Jan 28 23:15:45 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:45Z ERROR: DeserializeFileDB: Failed to open file /root/.bitcoin/anchors.dat
Jan 28 23:15:45 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:45Z 0 block-relay-only anchors will be tried for connections.
Jan 28 23:15:45 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:45Z init message: Starting network threads...
Jan 28 23:15:45 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:45Z init message: Done loading
Jan 28 23:15:45 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:45Z dnsseed thread start
Jan 28 23:15:45 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:45Z Waiting 300 seconds before querying DNS seeds.
Jan 28 23:15:45 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:45Z addcon thread start
Jan 28 23:15:45 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:45Z opencon thread start
Jan 28 23:15:45 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:45Z msghand thread start
Jan 28 23:15:45 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:15:45Z net thread start
Jan 28 23:16:30 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:16:29Z UpdateTip: new best=000000000000000000013f49e5d9c8b2851cf0274513bf291654a0d3eb2ead2f height=720619 version=0x2000e004 log2_work=93.311737 tx=706052029 date='2022-01-27T16:05:48Z' progress=0.999442 cache=1.8MiB(13481txo)
Jan 28 23:17:16 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:17:16Z UpdateTip: new best=000000000000000000022774f52c8c07126bd96058b72e23bb267a163960e610 height=720620 version=0x20c00004 log2_work=93.311750 tx=706053427 date='2022-01-27T16:06:53Z' progress=0.999443 cache=3.1MiB(22967txo)
Jan 28 23:17:56 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:17:56Z UpdateTip: new best=000000000000000000064dfd8b80cad761422ff773039eff9dbc6e5fb2a904a8 height=720621 version=0x20004004 log2_work=93.311764 tx=706055528 date='2022-01-27T16:15:12Z' progress=0.999445 cache=4.5MiB(33629txo)
Jan 28 23:18:36 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:18:36Z UpdateTip: new best=000000000000000000032d121e70080e8039b61cf6419084daa480e067cf9b68 height=720622 version=0x20800004 log2_work=93.311777 tx=706058478 date='2022-01-27T16:33:06Z' progress=0.999450 cache=6.4MiB(47029txo)
Jan 28 23:19:19 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:19:19Z UpdateTip: new best=000000000000000000009ceca1b251c807644b3b3868b90fd449a54a00959fb9 height=720623 version=0x20400000 log2_work=93.311790 tx=706061230 date='2022-01-27T16:39:13Z' progress=0.999452 cache=7.8MiB(57685txo)
Jan 28 23:20:02 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:20:02Z UpdateTip: new best=00000000000000000004500fec82e3eac7591b9751e90bc51a954a9ba57fb97f height=720624 version=0x20000004 log2_work=93.311804 tx=706062587 date='2022-01-27T16:44:07Z' progress=0.999453 cache=8.7MiB(65396txo)
Jan 28 23:20:39 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:20:39Z UpdateTip: new best=00000000000000000004dcb829b164c7847ef8845b6e52bcbfe0c50679c1a621 height=720625 version=0x20800004 log2_work=93.311817 tx=706065700 date='2022-01-27T17:12:27Z' progress=0.999461 cache=10.2MiB(77489txo)
Jan 28 23:20:45 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:20:45Z Loading addresses from DNS seed seed.bitcoin.sipa.be
Jan 28 23:20:45 embassy-2ef08502 c97087f5efad[2579]: 2022-01-28T23:20:45Z Loading addresses from DNS seed seed.bitcoinstats.com

bitcoind for 0.3.0

update to new package format for 0.3.0

  • Add non-pruned option
  • backup create
  • backup restore
  • configure
  • health checks
  • start
  • stop

[feat]: sync from cifs

IBD on bitcoind is slow. Add ability to sync on laptop then transfer over the network. If connected via gigabit, this can allow a full sync in 3 hours, plus however long it takes to sync the laptop

[feat:] Add rolling forward state to sync health check

Perhaps display a message that says "recovering from ungraceful shutdown. This may take minutes or days depending on how large your dbcache was when bitcoin crashed"

Edit: Should also relay exit code -28 messages like "verifying blocks", etc, and indicate header syncing progress

[feat]: Add detailed node info

Prerequisites

  • I have searched for existing issues that already suggest this feature.

Describe the Feature Request

List the number and host info of connected peers. This is may be better suited to a UI Dashboard, depending on how far out that feature is

Describe the Use Case

Quickly view connected peers and info about them

Describe Preferred Solution

Perhaps throw into Properties, but a UI Dashboard is ideal

Describe Alternatives

No response

Anything else?

No response

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.