Bitcoin Forum
April 10, 2026, 02:21:00 PM *
News: Latest Bitcoin Core release: 30.2 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 [3]  All
  Print  
Author Topic: [ANN] SOST — Native PoW Chain | ConvergenceX | CPU-Only | 8 GB | Gold Reserve  (Read 365 times)
Neob1844 (OP)
Newbie
*
Online Online

Activity: 14
Merit: 0


View Profile
April 07, 2026, 05:00:46 PM
Last edit: April 07, 2026, 10:06:30 PM by Neob1844
 #41

 Quick status update.

I am currently running an isolated sync test from my own machine,
simulating what a new peer does when connecting to the seed from zero.

So far, the sync reaches block ~2392 successfully. At block #2393,
the peer accepts the block in trusted header-only mode
(`tx data missing — header-only accept`) and the connection then
drops immediately afterward.

This strongly suggests that the remaining issue is still in the
bootstrap / GETB delivery path — most likely at the transport,
framing, or block-serving layer — rather than in the mined chain
itself.

At this point, I do not want to overstate the diagnosis:
the current evidence points to incomplete or inconsistent block
delivery during sync, but I am still auditing the full path before
claiming the exact root cause.

I am now reviewing the block send/receive pipeline around that
boundary to determine why a trusted block can arrive without full
transaction payload and why the peer disconnects immediately after.

I will post again when I have either:
1. a confirmed root cause, or
2. a fix ready for external retesting.
Rizki Maryanto
Newbie
*
Online Online

Activity: 14
Merit: 0


View Profile
April 08, 2026, 05:09:59 AM
 #42

ok, i`ll wait for further news. i hope it goes smoothly.
Neob1844 (OP)
Newbie
*
Online Online

Activity: 14
Merit: 0


View Profile
April 08, 2026, 08:01:31 AM
Last edit: April 08, 2026, 10:16:56 AM by Neob1844
 #43

Quick status update.

An isolated sync test has been executed from a clean external machine, simulating exactly how a new peer connects to the seed from scratch.

Current verified status:

* full bootstrap sync from height 0 to tip completes successfully in plaintext P2P mode
* the node reaches height 3300 and completes synchronization normally
* the previous bootstrap failure around height 3226 is resolved on the practical sync path
* the remaining unresolved issue is isolated to the encrypted P2P transport path, which still stalls after the first trusted batch

Transport status:

The default P2P transport has been temporarily switched to plaintext while the encrypted X25519+ChaCha20 sync path remains under investigation.

This decision was made because a broken default transport mode is operationally worse than a stable plaintext bootstrap path.

What this change does NOT affect:

* consensus rules
* block validity
* chain selection
* PoW verification
* cASERT difficulty validation
* wallet key custody

Private keys do not propagate over the P2P network. Transactions remain locally signed. The temporary difference is at the transport/privacy layer, not at the consensus layer.

What this change does affect:

* transport-level privacy only

A network observer may have greater visibility into block and transaction relay patterns while plaintext transport is the active recommended mode. This is a transport-layer tradeoff, not a chain-integrity issue.

Historical context:

Bitcoin operated for most of its existence without mandatory encrypted P2P transport, at least until 2023. Encrypted transport is a network-layer hardening feature, not a prerequisite for basic blockchain validity or successful initial synchronization.

Current operational conclusion:

Reliable bootstrap from zero to tip takes priority over optional encrypted transport during the present pre-market stage.

Recommended sync instructions:

```bash
git pull origin main
cd build
make clean
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j$(nproc) sost-node
cp ../genesis_block.json .

pkill -9 sost-node || true
rm -f chain.json
rm -rf blocks utxo ~/.sost

./sost-node --genesis genesis_block.json \
  --connect seed.sostcore.com:19333 \
  --rpc-user YOUR_USER --rpc-pass YOUR_PASS \
  --profile mainnet \
  --p2p-enc off
```

Plaintext P2P transport is currently the recommended and verified bootstrap path. The explicit `--p2p-enc off` flag is included here for clarity and to avoid ambiguity when testing with older binaries.

Encrypted P2P transport will be re-enabled only after the sync path has been fully audited and externally re-verified under clean bootstrap conditions.


Operational note:

Founder mining is currently paused in order to acknowledge the external testing effort that helped identify synchronization and related issues, and also to facilitate ConvergenceX testing under cleaner network conditions.

The chain is currently approximately 110 blocks behind the expected height at the time of writing this post (block 3,300), as the developer’s miner has been paused during this diagnostic and troubleshooting phase. Mining is now ready to resume. Under the active cASERT V2 parameters — 24-hour half-life and a 12.5% per-block adjustment cap — this level of lag should not take excessive time to normalize, and the network is expected to converge progressively back toward alignment between expected block production and emitted blocks.

The current height can be checked on the official explorers: https://sostprotocol.com/sost-explorer.html and https://sostcore.com/sost-explorer.html

Rizki Maryanto
Newbie
*
Online Online

Activity: 14
Merit: 0


View Profile
April 08, 2026, 03:08:50 PM
 #44

Hi Neob1844,

Encryption fix verified! Using --p2p-enc off works to establish the connection, but the Sync Logic is still broken.

My node is at height 2501. When it requests the next batch, your seed node is sending blocks starting from height 2858. There is a massive gap of 356 blocks (2502 to 2857) that the seed is not sending.

Because the blocks don't connect to my current tip (2501), my node identifies them as invalid forks and has BANNED your seed IP again:
[FORK] Block h=2858 ... does not extend tip (our height=2501)
[P2P] BANNED seed.sostcore.com:19333: invalid block (24h)

The seed is failing to deliver a continuous chain. Please check why the batching logic is skipping the range between 2502 and 2857.



[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[P2PDBG] DONE received from seed.sostcore.com:19333: our_height=2500, their_height=3300, blocks_size=2501
[SYNC] Batch done from seed.sostcore.com:19333. Requesting blocks 2501..3300
[FORK] Block h=2858 bid=13d8c40cd73a34ad does not extend tip (our height=2501).
[ORPHAN] Block h=2858 stored (parent eedcd5f83f338827 unknown). 1 orphans total.
[FORK] Block h=2859 bid=e1277f0b58070e45 does not extend tip (our height=2501).
[SYNC] Block #2859 from seed.sostcore.com:19333 failed validation — stopping sync
[P2P] Misbehavior +10 (invalid block) from seed.sostcore.com:19333 [score=10/100]
[FORK] Block h=2860 bid=0da52aef078471ec does not extend tip (our height=2501).
[ORPHAN] Block h=2860 stored (parent e1277f0b58070e45 unknown). 2 orphans total.
[FORK] Block h=2861 bid=813592591d527560 does not extend tip (our height=2501).
[SYNC] Block #2861 from seed.sostcore.com:19333 failed validation — stopping sync
[P2P] Misbehavior +10 (invalid block) from seed.sostcore.com:19333 [score=20/100]
[FORK] Block h=2862 bid=111bec12af8a8d5c does not extend tip (our height=2501).
[ORPHAN] Block h=2862 stored (parent 813592591d527560 unknown). 3 orphans total.
[FORK] Block h=2863 bid=ceab02a6e8feb16e does not extend tip (our height=2501).
[SYNC] Block #2863 from seed.sostcore.com:19333 failed validation — stopping sync
[P2P] Misbehavior +10 (invalid block) from seed.sostcore.com:19333 [score=30/100]
[FORK] Block h=2864 bid=653b1452772f2d50 does not extend tip (our height=2501).
[ORPHAN] Block h=2864 stored (parent ceab02a6e8feb16e unknown). 4 orphans total.
[FORK] Block h=2865 bid=bfaf056b01121306 does not extend tip (our height=2501).
[SYNC] Block #2865 from seed.sostcore.com:19333 failed validation — stopping sync
[P2P] Misbehavior +10 (invalid block) from seed.sostcore.com:19333 [score=40/100]
[FORK] Block h=2866 bid=29392a20a5fb73df does not extend tip (our height=2501).
[ORPHAN] Block h=2866 stored (parent bfaf056b01121306 unknown). 5 orphans total.
[FORK] Block h=2867 bid=0082ab3bd73a665e does not extend tip (our height=2501).
[SYNC] Block #2867 from seed.sostcore.com:19333 failed validation — stopping sync
[P2P] Misbehavior +10 (invalid block) from seed.sostcore.com:19333 [score=50/100]
[FORK] Block h=2868 bid=7a6606c459f8c124 does not extend tip (our height=2501).
[ORPHAN] Block h=2868 stored (parent 0082ab3bd73a665e unknown). 6 orphans total.
[FORK] Block h=2869 bid=e237934846232528 does not extend tip (our height=2501).
[SYNC] Block #2869 from seed.sostcore.com:19333 failed validation — stopping sync
[P2P] Misbehavior +10 (invalid block) from seed.sostcore.com:19333 [score=60/100]
[FORK] Block h=2870 bid=a88989e17d4372ac does not extend tip (our height=2501).
[ORPHAN] Block h=2870 stored (parent e237934846232528 unknown). 7 orphans total.
[FORK] Block h=2871 bid=72794888c088731a does not extend tip (our height=2501).
[SYNC] Block #2871 from seed.sostcore.com:19333 failed validation — stopping sync
[P2P] Misbehavior +10 (invalid block) from seed.sostcore.com:19333 [score=70/100]
[FORK] Block h=2872 bid=2a636266266136bd does not extend tip (our height=2501).
[ORPHAN] Block h=2872 stored (parent 72794888c088731a unknown). 8 orphans total.
[FORK] Block h=2873 bid=e17130e21d38c802 does not extend tip (our height=2501).
[SYNC] Block #2873 from seed.sostcore.com:19333 failed validation — stopping sync
[P2P] Misbehavior +10 (invalid block) from seed.sostcore.com:19333 [score=80/100]
[FORK] Block h=2874 bid=f39e29a11aa94d02 does not extend tip (our height=2501).
[ORPHAN] Block h=2874 stored (parent e17130e21d38c802 unknown). 9 orphans total.
[FORK] Block h=2875 bid=404e98061801c4fe does not extend tip (our height=2501).
[SYNC] Block #2875 from seed.sostcore.com:19333 failed validation — stopping sync
[P2P] Misbehavior +10 (invalid block) from seed.sostcore.com:19333 [score=90/100]
[FORK] Block h=2876 bid=ae18a0b4850d6f08 does not extend tip (our height=2501).
[ORPHAN] Block h=2876 stored (parent 404e98061801c4fe unknown). 10 orphans total.
[FORK] Block h=2877 bid=22364bad803a38dc does not extend tip (our height=2501).
[SYNC] Block #2877 from seed.sostcore.com:19333 failed validation — stopping sync
[P2P] BANNED seed.sostcore.com:19333: invalid block (24h)
[P2P] Peer disconnected: seed.sostcore.com:19333
Neob1844 (OP)
Newbie
*
Online Online

Activity: 14
Merit: 0


View Profile
April 08, 2026, 08:37:01 PM
 #45

Can you confirm — did you run the sync with --p2p-enc on or --p2p-enc off?

  The encrypted mode has a known bug. Did you try in plaintext mode with a completely clean state?

  git pull origin main
  cd build
  make clean
  cmake .. -DCMAKE_BUILD_TYPE=Release
  make -j$(nproc) sost-node
  cp ../genesis_block.json .

  rm -f chain.json
  rm -rf blocks utxo ~/.sost

  ./sost-node --genesis genesis_block.json \
    --connect seed.sostcore.com:19333 \
    --rpc-user YOUR_USER --rpc-pass YOUR_PASS \
    --profile mainnet \
    --p2p-enc off
Neob1844 (OP)
Newbie
*
Online Online

Activity: 14
Merit: 0


View Profile
April 08, 2026, 09:40:05 PM
Last edit: April 09, 2026, 08:02:04 AM by Neob1844
 #46

Technical update:

The developer miner was restarted at 21:35 UTC to resume live ConvergenceX testing and to observe recovery behavior under current cASERT conditions.

Current network state at the time of capture:
- Actual chain height: 3300
- Expected height: 3476
- Chain lag: 176 blocks behind
- Active anti-stall profile: E4
- Wall-clock elapsed since genesis: 24d 3h 29m 42s
- Chain-time elapsed: 23d 21h 37m 17s
- Time offset: -5h 51m 25s
- Current mining target: 10m 00s average block interval
- Current block in progress: #3301
- Current displayed difficulty: 9.845 bits
- Current block elapsed at capture: 1423m 23s

The present schedule deficit is approximately 29h 20m in block-time terms (176 × 10 minutes). Recovery speed back toward the expected schedule will depend on effective live hashrate, but the network is now being observed directly to measure how quickly block production converges again toward the 10-minute target average.

The current progress can be checked on the official explorers:
https://sostcore.com/sost-explorer.html
https://sostprotocol.com/sost-explorer.html
Neob1844 (OP)
Newbie
*
Online Online

Activity: 14
Merit: 0


View Profile
April 09, 2026, 08:01:16 AM
Last edit: April 09, 2026, 06:00:49 PM by Neob1844
 #47

SOST Synchronization Update — P2P Sync Fixed, Encryption Working, Bootstrap Still Available

The historical P2P synchronization issues reported earlier have now been identified and resolved.

A fresh node has been synchronized successfully from zero state to tip over direct P2P in repeated clean runs. Bootstrap HTTPS was also re-tested successfully and remains available as an optional fast-start / fallback method.

P2P encryption has now also been validated in all practical modes:
- plaintext on both sides
- encrypted client with plaintext fallback to a non-encrypted peer
- encrypted end-to-end on both sides

What was fixed:

The sync stall affecting nodes after block ~2500 was caused by multiple issues in the P2P transport layer:
- a rate limiter that silently dropped blocks during initial sync
- blocking I/O in the message loop that prevented reliable stall recovery
- TCP flow-control deadlocks when sending oversized batches
- missing EAGAIN handling for non-blocking socket writes

An additional issue affected encrypted/plaintext interoperability:
- when an encrypted client connected to a plaintext peer, the client could discard the peer’s VERSION message while expecting EKEY, preventing sync from starting
- plaintext peers could also penalize EKEY unnecessarily

These were networking / transport bugs only.
No consensus rules were changed.
No block validation rules were changed.
No emission logic was changed.
No chain history was changed.
No hard fork or regenesis was required.

Validated methods:

1. Direct P2P sync (plaintext)
A fresh node can now sync the full chain from genesis to tip over direct P2P. This was validated in repeated clean runs from zero state to tip.

2. Bootstrap chain import (fast start)
A node can also download the HTTPS bootstrap chain snapshot and become operational almost immediately. This remains available as an optional fast-start / fallback path.

3. Encrypted P2P sync
Encrypted P2P transport is now functional.
- ON/OFF fallback works correctly
- ON/ON end-to-end encrypted sync also completes successfully

Operational note:
- --p2p-enc off remains the fastest option for historical sync
- --p2p-enc on now works, but historical sync is slower under full encryption due to transport overhead
- bootstrap remains useful when a node operator wants the fastest possible initialization

Build from latest source:

git pull origin main
cd build
make clean
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j$(nproc) sost-node
cp ../genesis_block.json .

Direct P2P sync (fastest historical sync):
./sost-node --genesis genesis_block.json \
  --connect seed.sostcore.com:19333 \
  --rpc-user YOUR_USER --rpc-pass YOUR_PASS \
  --profile mainnet --p2p-enc off

Bootstrap fast-start:
curl -o chain.json https://sostcore.com/bootstrap-chain.json
rm -rf blocks utxo ~/.sost

./sost-node --genesis genesis_block.json --chain chain.json \
  --connect seed.sostcore.com:19333 \
  --rpc-user YOUR_USER --rpc-pass YOUR_PASS \
  --profile mainnet --p2p-enc off

Encrypted P2P sync:
./sost-node --genesis genesis_block.json \
  --connect seed.sostcore.com:19333 \
  --rpc-user YOUR_USER --rpc-pass YOUR_PASS \
  --profile mainnet --p2p-enc on

Verify sync:
curl -s --user YOUR_USER:YOUR_PASS \
  -d '{"method":"getblockcount","params":[],"id":1}' \
  http://127.0.0.1:YOUR_RPC_PORT

Start mining after full sync:
./sost-miner --address YOUR_SOST_ADDRESS \
  --rpc 127.0.0.1:18232 --rpc-user YOUR_USER --rpc-pass YOUR_PASS \
  --blocks 999999 --profile mainnet

Bootstrap snapshot:
https://sostcore.com/bootstrap-chain.json

Seed node:
seed.sostcore.com:19333

Explorer:
https://sostcore.com/sost-explorer.html

Summary:
- Direct P2P sync: working
- Bootstrap import: working
- Encrypted P2P: working
- Plaintext historical sync remains the fastest mode
- No consensus changes
- No hard fork
- No regenesis

Thank you to everyone who reported sync issues during testing. Those reports directly helped isolate and fix the networking bugs.
Neob1844 (OP)
Newbie
*
Online Online

Activity: 14
Merit: 0


View Profile
April 09, 2026, 09:14:42 PM
Last edit: April 09, 2026, 09:52:01 PM by Neob1844
 #48

Quick miner update:

if you're mining and see repeated "NODE REJECTED BLOCK — will retry same height", please update:


   # 1. Stop your miner (Ctrl+C or):
   pkill -9 -f sost-miner

   # 2. Pull and rebuild:
   cd ~/sost-core
   git pull origin main
   cd build
   make clean
   cmake .. -DCMAKE_BUILD_TYPE=Release
   make -j$(nproc) sost-miner

   # 3. Restart your miner:
   ./sost-miner --address YOUR_SOST_ADDRESS \
     --rpc 127.0.0.1:18232 \
     --rpc-user YOUR_USER \
     --rpc-pass YOUR_PASS \
     --blocks 999999 --profile mainnet

No node restart needed — only the miner binary changed.

This fixes the miner to automatically advance to the current tip when another miner wins a block first, instead of retrying the same height indefinitely.
Neob1844 (OP)
Newbie
*
Online Online

Activity: 14
Merit: 0


View Profile
April 09, 2026, 09:26:46 PM
Last edit: April 09, 2026, 10:00:15 PM by Neob1844
 #49

Miner update — competitive mining fix

A miner behavior bug has been identified and fixed that only
appears when two or more miners are active simultaneously.

What happened:
When a miner found a valid block but another miner had already
submitted a block at the same height, the node correctly rejected
the late submission. However, the miner did not advance to the
next height — it kept retrying the same rejected block indefinitely.

This bug was invisible during solo mining. It only became apparent
now that a second miner joined the network.

What was fixed:
The miner now queries the node after a rejection. If the chain has
advanced, the miner automatically moves to the next height and
continues. No manual intervention needed.

To update and restart:

   # 1. Stop your miner (Ctrl+C or):
   pkill -9 -f sost-miner

   # 2. Pull and rebuild:
   cd ~/sost-core
   git pull origin main
   cd build
   make clean
   cmake .. -DCMAKE_BUILD_TYPE=Release
   make -j$(nproc) sost-miner

   # 3. Restart your miner:
   ./sost-miner --address YOUR_SOST_ADDRESS \
     --rpc 127.0.0.1:18232 \
     --rpc-user YOUR_USER \
     --rpc-pass YOUR_PASS \
     --blocks 999999 --profile mainnet

No node restart needed — only the miner binary changed.

How SOST handles two miners finding a block at the same height:

The node and chain consensus already handle this correctly. No changes were needed here — this is how it has always worked:

  - Miner A submits first, Miner B submits second (same height): The node accepts A. B is stored as a fork candidate. A remains the active tip. This is the "first seen wins" rule.
  - Miner B's block has more cumulative proof-of-work: The node automatically reorganizes the chain to follow B's block instead. The best chain always wins, regardless of arrival order.
  - Both blocks have equal cumulative work: First seen wins. No reorganization. This is the same rule Bitcoin uses.
  - The miner whose block was rejected: With today's fix, the miner detects the rejection, queries the node for the current tip, and immediately starts mining the next block. No manual restart needed.

In short: the chain selects the best valid chain by cumulative work, and miners now recover automatically when they lose a block to a competitor.
Neob1844 (OP)
Newbie
*
Online Online

Activity: 14
Merit: 0


View Profile
Today at 07:56:03 AM
 #50

  ▎ Infrastructure update — miner improvements

  ▎ Several miner fixes have been pushed in the last 24h:

  ▎ - Miner now auto-advances when another miner wins a block (no more infinite REJECTED loop)
  ▎ - Miner correctly syncs tip hash and difficulty after reconnecting to the node
  ▎ - Explorer now shows accurate mining status

  ▎ If your miner gets stuck or shows repeated REJECTED:

  ▎ pkill -9 -f sost-miner
  ▎ cd ~/sost-core
  ▎ git pull origin main
  ▎ cd build
  ▎ make clean
  ▎ cmake .. -DCMAKE_BUILD_TYPE=Release
  ▎ make -j$(nproc) sost-miner

  ▎ Then download fresh chain state and restart:

  ▎ scp YOUR_NODE:/path/to/chain.json ./chain.json
  ▎ ./sost-miner --address YOUR_SOST_ADDRESS \
  ▎   --rpc 127.0.0.1:18232 \
  ▎   --rpc-user YOUR_USER --rpc-pass YOUR_PASS \
  ▎   --blocks 999999 --profile mainnet

  ▎ The infrastructure is under continuous improvement during this pre-market testing phase. If you experience any issue, always start by pulling the latest code and
  rebuilding. Report any problems here with your full log.
Rizki Maryanto
Newbie
*
Online Online

Activity: 14
Merit: 0


View Profile
Today at 02:13:16 PM
 #51

root@srv1561018:~/sost-core/build# tail -f node.log
PoPC registry: 0 active commitments
Wallet rescan: 0 UTXOs registered (balance: 0.00000000 SOST)
UTXO set: 11166 entries | Mempool: 0 txs

[RPC] Listening on 127.0.0.1:18232 — 37 methods (auth=ON)
[P2P] Listening on port 19333
Node running. Ctrl+C to stop.

[P2P] Peer connected: seed.sostcore.com:19333 (outbound)
[P2P] seed.sostcore.com:19333: version OK, their height=3728
[BLOCK] CX Transcript V2 verified
[BLOCK] Height 3729 accepted: 515cc0231767b310 (txs=1, fees=0, UTXOs=11169, chainwork=0x7528e0)
[P2P] Broadcasting block #3729 to 1 peers
[BLOCK] CX Transcript V2 verified
[BLOCK] Height 3730 accepted: 0c28d4e4d5a9a118 (txs=1, fees=0, UTXOs=11172, chainwork=0x753ece)
[P2P] Broadcasting block #3730 to 1 peers
[BLOCK] CX Transcript V2 verified
[BLOCK] Height 3731 accepted: 9899dad01268d575 (txs=1, fees=0, UTXOs=11175, chainwork=0x755553)
[P2P] Broadcasting block #3731 to 1 peers
[BLOCK] CX Transcript V2 verified
[BLOCK] Height 3732 accepted: ea3a83e1986547e1 (txs=1, fees=0, UTXOs=11178, chainwork=0x756c9a)
[P2P] Broadcasting block #3732 to 1 peers
[BLOCK] CX Transcript V2 verified
[BLOCK] Height 3733 accepted: d3f987956de0c1d7 (txs=1, fees=0, UTXOs=11181, chainwork=0x75845b)
[P2P] Broadcasting block #3733 to 1 peers
[BLOCK] CX Transcript V2 verified
[BLOCK] Height 3734 accepted: 6c188864ab968d9f (txs=1, fees=0, UTXOs=11184, chainwork=0x759cd8)
[P2P] Broadcasting block #3734 to 1 peers
[BLOCK] CX Transcript V2 verified
[BLOCK] Height 3735 accepted: 133e8d0ac5912a2c (txs=1, fees=0, UTXOs=11187, chainwork=0x75b5e2)
[P2P] Broadcasting block #3735 to 1 peers
Pages: « 1 2 [3]  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!