Skip to content

[Question] Sync speed becomes extremely slow when starting from a recent Lite Snapshot (RocksDB) #6896

Description

@NabiKAZ

Hi,

I wrote a small tool to monitor the synchronization status of a TRON node. It compares the local block height with the current network height, calculates the synchronization speed, and estimates the remaining sync time.

Repository:
https://github.com/NabiKAZ/tron-sync-status
I used this tool for the following logs.

My use case

I need the balances of all TRON wallet addresses, so I'm using a Lite Snapshot with the RocksDB database.

The problem

When I start syncing from block 0, the synchronization speed is quite reasonable. The node downloads around 7 blocks per second, which suggests that my configuration is generally correct.

Log:

[2026-08-01 02:52:29] Local=167 (+99) Network=84956460 (+5) Remain=84956293 (-94) Speed=8.25 blk/s ETA=3012h 38m 4s
[2026-08-01 02:52:44] Local=256 (+89) Network=84956464 (+4) Remain=84956208 (-85) Speed=5.93 blk/s ETA=4164h 31m 12s
[2026-08-01 02:52:57] Local=353 (+97) Network=84956469 (+5) Remain=84956116 (-92) Speed=7.46 blk/s ETA=3334h 37m 48s
[2026-08-01 02:53:09] Local=447 (+94) Network=84956473 (+4) Remain=84956026 (-90) Speed=7.83 blk/s ETA=3146h 31m 10s
[2026-08-01 02:53:20] Local=531 (+84) Network=84956477 (+4) Remain=84955946 (-80) Speed=7.64 blk/s ETA=3244h 50m 42s

However, when I start from the latest Lite Snapshot, synchronization becomes extremely slow.

The behavior is inconsistent:

  • Sometimes it syncs for a few minutes, but at a very low speed.
  • The synchronization speed is almost always lower than the network growth rate, so the node never catches up.
  • Sometimes it stays around 2 blocks/sec for several hours.
  • In some cases, it downloads zero blocks for 24 hours.

Here is an example where the reported speed is 0.00 blk/s:

[2026-08-01 02:59:51] Local=84846947 (0) Network=84956607 (+4) Remain=109660 (+4) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:00:04] Local=84846947 (0) Network=84956611 (+4) Remain=109664 (+4) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:00:16] Local=84846947 (0) Network=84956616 (+5) Remain=109669 (+5) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:00:30] Local=84846947 (0) Network=84956620 (+4) Remain=109673 (+4) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:00:42] Local=84846947 (0) Network=84956623 (+3) Remain=109676 (+3) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:00:53] Local=84846947 (0) Network=84956628 (+5) Remain=109681 (+5) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:01:06] Local=84846947 (0) Network=84956632 (+4) Remain=109685 (+4) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:01:18] Local=84846947 (0) Network=84956637 (+5) Remain=109690 (+5) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:01:31] Local=84846947 (0) Network=84956640 (+3) Remain=109693 (+3) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:01:43] Local=84846947 (0) Network=84956644 (+4) Remain=109697 (+4) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:01:54] Local=84846947 (0) Network=84956648 (+4) Remain=109701 (+4) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:02:06] Local=84846947 (0) Network=84956652 (+4) Remain=109705 (+4) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:02:18] Local=84846947 (0) Network=84956656 (+4) Remain=109709 (+4) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:02:30] Local=84846947 (0) Network=84956660 (+4) Remain=109713 (+4) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:02:42] Local=84846947 (0) Network=84956664 (+4) Remain=109717 (+4) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:02:54] Local=84846947 (0) Network=84956668 (+4) Remain=109721 (+4) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:03:06] Local=84846947 (0) Network=84956672 (+4) Remain=109725 (+4) Speed=0.00 blk/s ETA=Not closing
[2026-08-01 03:03:18] Local=84846947 (0) Network=84956677 (+5) Remain=109730 (+5) Speed=0.00 blk/s ETA=Not closing

My question is:

  • Is this expected behavior when syncing from a Lite Snapshot?
  • What causes the node to become extremely slow or stop receiving blocks after loading a recent snapshot?
  • Is there any configuration or recommended approach to improve synchronization speed?

Environment

  • Network: Mainnet
  • java-tron version: 4.8.2
  • Operating System: Windows (WSL)
  • Java version:
openjdk version "1.8.0_492"
OpenJDK Runtime Environment (build 1.8.0_492-8u492-ga~us2-0ubuntu1~24.04.1-b09)
OpenJDK 64-Bit Server VM (build 25.492-b09, mixed mode)

Hardware

Personal machine

  • CPU: Intel Core i9-12900K
  • RAM: 96 GB DDR5
  • Storage: NVMe SSD
  • Network: 50 Mbps
  • OS: Windows (WSL)

The same issue also occurs on a separate Ubuntu 24.04 server. Although that server has weaker hardware than my desktop, it has a significantly faster network connection, so this does not appear to be hardware-specific.

Startup command

nabi@Nabi-PC:/mnt/c/TronNetwork$ java -Xmx24g -Xms24g -jar FullNode.jar -c config.conf

or

nabi@Nabi-PC:/mnt/c/TronNetwork$ java -Xmx24g -Xms24g -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -jar FullNode.jar -c config.conf

Configuration

net {
  # type is deprecated and has no effect.
  # type = mainnet
}

storage {
  db.engine = "ROCKSDB",  // deprecated for arm, because arm only support  "ROCKSDB".
  db.sync = false,
  db.directory = "database",
  checkpoint.version = 2,

  # Whether to write transaction result in transactionRetStore
  transHistory.switch = "off",

  # Per-database storage path overrides (name is required; see reference.conf for full property list).
  properties = [
  #   {
  #     name = "account",
  #     path = "storage_directory_test",
  #     maxOpenFiles = 100
  #   },
  ]

  needToUpdateAsset = true

  # RocksDB settings (only used when db.engine = "ROCKSDB"). See reference.conf for details.
  dbSettings = {
    levelNumber = 7
    compactThreads = 16
    blocksize = 16  // n * KB
    maxBytesForLevelBase = 512  // n * MB
    maxBytesForLevelMultiplier = 10
    level0FileNumCompactionTrigger = 4
    targetFileSizeBase = 512  // n * MB
    targetFileSizeMultiplier = 1
    maxOpenFiles = 10000
  }

  balance.history.lookup = false

  # If true, transaction cache initialization will be faster. Default: false
  txCache.initOptimization = true
}

node.discovery = {
  enable = true
  persist = true
  external.ip = "46.4.144.75"
}

# Custom stop condition
# node.shutdown = {
#   BlockTime  = "54 59 08 * * ?" # if block header time in persistent db matched.
#   BlockHeight = 33350800 # if block header height in persistent db matched.
#   BlockCount = 12 # block sync count after node start.
# }

node.backup {
  port = 10001
  priority = 8
  keepAliveInterval = 3000
  members = [
    # "ip",
    # "ip"
  ]
}

# Specify the algorithm for generating a public key from private key. To avoid forks, please do not modify it
crypto {
  engine = "eckey"
}

node.metrics = {
  prometheus {
    enable = false
    port = 9527
  }
}

node {
  trustNode = "127.0.0.1:50051"

  # expose extension api to public or not
  walletExtensionApi = true

  listen.port = 18888

  fetchBlock.timeout = 5000

  maxConnections = 300
  minConnections = 28
  minActiveConnections = 3
  maxConnectionsWithSameIp = 100
  maxHttpConnectNumber = 50
  minParticipationRate = 15

  isOpenFullTcpDisconnect = false
  inactiveThreshold = 600 //seconds

  maxActiveNodes = 300

  p2p {
    version = 11111 # Mainnet:11111; Nile:201910292; Shasta:1

    pingIpv4 = true
    discover = true
  }

  active = [
    # Active establish connection in any case
    # "ip:port",
    # "ip:port"
    "3.225.171.164:18888",
    "52.8.46.215:18888",
    "3.79.71.167:18888",
    "108.128.110.16:18888",
    "18.133.82.227:18888"
  ]

  passive = [
    # Passive accept connection in any case
    # "ip:port",
    # "ip:port"
  ]

  fastForward = [
    "100.27.171.62:18888",
    "15.188.6.125:18888"
  ]

  http {
    fullNodeEnable = true
    fullNodePort = 8090
    solidityEnable = true
    solidityPort = 8091
    PBFTEnable = true
    PBFTPort = 8092
  }

  rpc {
    enable = true
    port = 50051
    solidityEnable = true
    solidityPort = 50061
    PBFTEnable = true
    PBFTPort = 50071

    maxConnectionIdleInMillis = 60000
    minEffectiveConnection = 1

    # The switch of the reflection service for grpcurl tool. Default: false
    reflectionService = false
  }

  dynamicConfig = {
    # enable = false
    # checkInterval = 600
  }

  dns {
    treeUrls = [
      #"tree://AKMQMNAJJBL73LXWPXDI4I5ZWWIZ4AWO34DWQ636QOBBXNFXH3LQS@main.trondisco.net",
    ]
  }

  jsonrpc {
    httpFullNodeEnable = true
    httpFullNodePort = 8545

    maxBlockRange = 5000
    maxAddressSize = 1000
    maxSubTopics = 1000
    maxBlockFilterNum = 50000
    maxBatchSize = 100
    maxResponseSize = 26214400
    maxLogFilterNum = 20000
    maxMessageSize = 4194304
  }

  disabledApi = [
    #  "getaccount",
    #  "getnowblock2"
  ]
}

## rate limiter config
rate.limiter = {
  # See reference.conf for available strategies (GlobalPreemptibleAdapter, QpsRateLimiterAdapter, IPQPSRateLimiterAdapter).
  http = [
  ],

  rpc = [
  ]

  p2p = {
    # syncBlockChain = 3.0
    # fetchInvData = 3.0
    # disconnect = 1.0
  }

  # global qps, default 50000
  global.qps = 50000
  # IP-based global qps, default 10000
  global.ip.qps = 10000
  # If true, API rate limiters reject immediately on overload (non-blocking). Default: false
  apiNonBlocking = false
}



seed.node = {
  # List of the seed nodes
  # Seed nodes are stable full nodes
  ip.list = [
    "3.225.171.164:18888",
    "52.8.46.215:18888",
    "3.79.71.167:18888",
    "108.128.110.16:18888",
    "18.133.82.227:18888",
    "35.180.81.133:18888",
    "13.210.151.5:18888",
    "18.231.27.82:18888",
    "3.12.212.122:18888",
    "52.24.128.7:18888",
    "15.207.144.3:18888",
    "3.39.38.55:18888",
    "54.151.226.240:18888",
    "35.174.93.198:18888",
    "18.210.241.149:18888",
    "54.177.115.127:18888",
    "54.254.131.82:18888",
    "18.167.171.167:18888",
    "54.167.11.177:18888",
    "35.74.7.196:18888",
    "52.196.244.176:18888",
    "54.248.129.19:18888",
    "43.198.142.160:18888",
    "3.0.214.7:18888",
    "54.153.59.116:18888",
    "54.153.94.160:18888",
    "54.82.161.39:18888",
    "54.179.207.68:18888",
    "18.142.82.44:18888",
    "18.163.230.203:18888",
    # "[2a05:d014:1f2f:2600:1b15:921:d60b:4c60]:18888", // use this if support ipv6
    # "[2600:1f18:7260:f400:8947:ebf3:78a0:282b]:18888", // use this if support ipv6

    "34.253.161.97:18888",
    "18.133.82.229:18888",
    "52.16.20.155:18888",

    "3.255.157.239:18888",
    "134.65.192.154:18888",
    "36.110.14.4:18888",
    "47.74.158.126:18888",
    "8.211.199.196:18888",
    "123.157.192.51:18888",
    "118.189.170.239:18888",
    "34.245.203.80:18888",
    "146.70.171.151:18888",
    "88.99.105.9:18888",
    "46.8.170.211:18888",
    "167.235.11.215:18888",
    "79.137.89.201:18888",
    "125.40.24.73:18888",
    "210.177.255.136:18888",
    "162.19.112.217:18888",
    "164.152.161.15:18888",
    "152.53.161.229:18888",
    "36.230.142.205:18888",
    "124.90.48.109:18888",
    "69.162.121.251:18888",
    "185.26.30.132:18888",
    "54.46.91.122:18888",
    "103.144.61.130:18888",
    "168.119.5.80:18888",
    "44.200.210.249:18888",
    "220.184.78.71:18888",
    "66.23.227.71:18888",
    "46.252.251.117:18888",
    "167.235.53.116:18888",
    "54.195.37.149:18888",
    "3.148.249.178:18888",
    "27.124.4.8:18888",
    "52.214.99.14:18888",
    "54.154.152.222:18888",
    "208.115.251.245:18888",
    "13.232.97.217:18888",
    "8.210.172.253:18888",
    "211.75.13.109:18888",
    "101.44.175.172:18888",
    "52.15.93.92:18888",
    "116.202.220.238:18888",
    "18.163.81.71:18888",
    "54.93.180.64:18888",
    "35.77.6.56:18888",
    "43.250.54.44:18888",
    "54.228.80.89:18888",
    "113.77.103.234:18888",
    "113.249.17.237:18888",
    "123.118.3.69:18888",
    "18.203.100.61:18888",
    "152.57.179.243:18888",
    "65.109.106.230:18888",
    "82.142.125.86:18888",
    "135.181.5.184:18888",
    "13.230.249.75:18888",
    "212.56.26.254:18888",
    "88.137.243.148:18888",
    "52.50.51.252:18888",
    "159.138.100.253:18888",
    "89.169.148.33:18888",
    "37.27.118.252:18888",
    "101.71.221.233:18888",
    "35.76.10.101:18888",
    "54.180.236.26:18888",
    "114.241.108.116:18888",
    "138.2.50.149:18888",
    "18.201.198.140:18888",
    "52.67.208.154:18888",
    "103.78.242.91:18888",
    "65.109.182.206:18888",
    "65.108.64.3:18888",
    "182.34.62.120:18888",
    "148.66.18.42:18888",
    "91.98.128.108:18888",
    "23.234.75.120:18888",
    "210.242.27.175:18888",
    "47.242.36.225:18888",
    "103.66.181.149:18888",
    "23.234.73.120:18888",
    "46.137.26.225:18888",
    "63.176.99.95:18888",
    "178.63.20.94:18888",
    "3.249.227.222:18888",
    "14.110.111.244:18888",
    "98.81.109.115:18888",
    "18.201.38.39:18888",
    "34.254.146.23:18888",
    "166.108.239.127:18888",
    "54.179.4.203:18888",
    "207.148.126.64:18888",
    "3.249.174.83:18888",
    "65.108.125.237:18888",
    "164.152.161.131:18888",
    "116.206.176.52:18888",
    "3.121.42.58:18888",
    "65.109.64.160:18888",
    "39.156.193.50:18888",
    "43.98.172.107:18888",
    "85.118.182.33:18888",
    "8.219.56.71:18888",
    "124.64.18.113:18888",
    "202.120.234.239:18888",
    "185.122.164.114:18888",
    "23.234.112.247:18888",
    "184.82.152.178:18888",
    "186.244.231.48:18888",
    "27.102.128.131:18888",
    "34.147.173.94:18888",
    "18.166.211.201:18888",
    "185.206.241.29:18888",
    "18.143.108.22:18888",
    "107.148.228.25:18888",
    "34.127.52.115:18888",
    "3.86.148.119:18888",
    "57.128.232.157:18888",
    "67.213.123.131:18888",
    "146.158.118.199:18888",
    "135.125.96.207:18888",
    "51.222.249.133:18888",
    "3.252.152.239:18888",
    "204.236.153.96:18888",
    "134.209.94.98:18888",
    "151.106.5.99:18888",
    "70.31.174.46:18888",
    "112.118.92.183:18888",
    "54.39.50.195:18888",
    "63.32.91.148:18888",
    "220.129.73.11:18888",
    "185.93.187.37:18888",
    "184.82.247.196:18888",
    "141.95.65.142:18888",
    "222.212.99.253:18888",
    "34.227.152.180:18888",
    "3.8.71.47:18888",
    "136.243.60.61:18888",
    "65.108.105.111:18888",
    "195.201.203.151:18888",
    "20.214.203.219:18888",
    "184.82.153.229:18888",
    "85.136.181.43:18888",
    "80.67.5.170:18888",
    "188.42.128.220:18888",
    "142.91.15.84:18888",
    "54.228.28.108:18888",
    "52.67.180.37:18888",
    "43.199.204.192:18888",
    "185.206.242.81:18888",
    "193.194.117.33:18888",
    "54.170.64.158:18888",
    "69.162.121.72:18888",
    "36.136.118.250:18888",
    "95.179.225.162:18888",
    "18.201.145.87:18888",
    "222.131.220.7:18888",
    "139.162.28.198:18888",
    "18.167.171.167:18888",
    "64.226.70.61:18888",
    "5.252.179.13:18888",
    "23.234.108.247:18888",
    "13.201.170.158:18888",
    "37.27.25.172:18888",
    "102.115.27.103:18888",
    "114.246.198.156:18888",
    "34.247.219.229:18888",
    "23.234.82.247:18888",
    "185.176.96.148:18888",
    "123.118.13.179:18888",
    "146.190.192.120:18888",
    "13.230.122.127:18888",
    "54.171.155.103:18888",
    "35.74.104.174:18888",
    "52.31.38.172:18888",
    "34.195.53.91:18888",
    "3.253.250.11:18888",
    "154.193.246.33:18888",
    "204.144.134.251:18888",
    "176.9.45.91:18888",
    "54.194.179.1:18888"
  ]
}

genesis.block = {
  # Reserve balance
  assets = [
    {
      accountName = "Zion"
      accountType = "AssetIssue"
      address = "TLLM21wteSPs4hKjbxgmH1L6poyMjeTbHm"
      balance = "99000000000000000"
    },
    {
      accountName = "Sun"
      accountType = "AssetIssue"
      address = "TXmVpin5vq5gdZsciyyjdZgKRUju4st1wM"
      balance = "0"
    },
    {
      accountName = "Blackhole"
      accountType = "AssetIssue"
      address = "TLsV52sRDL79HXGGm9yzwKibb6BeruhUzy"
      balance = "-9223372036854775808"
    }
  ]

  witnesses = [
    {
      address: THKJYuUmMKKARNf7s2VT51g5uPY6KEqnat,
      url = "http://GR1.com",
      voteCount = 100000026
    },
    {
      address: TVDmPWGYxgi5DNeW8hXrzrhY8Y6zgxPNg4,
      url = "http://GR2.com",
      voteCount = 100000025
    },
    {
      address: TWKZN1JJPFydd5rMgMCV5aZTSiwmoksSZv,
      url = "http://GR3.com",
      voteCount = 100000024
    },
    {
      address: TDarXEG2rAD57oa7JTK785Yb2Et32UzY32,
      url = "http://GR4.com",
      voteCount = 100000023
    },
    {
      address: TAmFfS4Tmm8yKeoqZN8x51ASwdQBdnVizt,
      url = "http://GR5.com",
      voteCount = 100000022
    },
    {
      address: TK6V5Pw2UWQWpySnZyCDZaAvu1y48oRgXN,
      url = "http://GR6.com",
      voteCount = 100000021
    },
    {
      address: TGqFJPFiEqdZx52ZR4QcKHz4Zr3QXA24VL,
      url = "http://GR7.com",
      voteCount = 100000020
    },
    {
      address: TC1ZCj9Ne3j5v3TLx5ZCDLD55MU9g3XqQW,
      url = "http://GR8.com",
      voteCount = 100000019
    },
    {
      address: TWm3id3mrQ42guf7c4oVpYExyTYnEGy3JL,
      url = "http://GR9.com",
      voteCount = 100000018
    },
    {
      address: TCvwc3FV3ssq2rD82rMmjhT4PVXYTsFcKV,
      url = "http://GR10.com",
      voteCount = 100000017
    },
    {
      address: TFuC2Qge4GxA2U9abKxk1pw3YZvGM5XRir,
      url = "http://GR11.com",
      voteCount = 100000016
    },
    {
      address: TNGoca1VHC6Y5Jd2B1VFpFEhizVk92Rz85,
      url = "http://GR12.com",
      voteCount = 100000015
    },
    {
      address: TLCjmH6SqGK8twZ9XrBDWpBbfyvEXihhNS,
      url = "http://GR13.com",
      voteCount = 100000014
    },
    {
      address: TEEzguTtCihbRPfjf1CvW8Euxz1kKuvtR9,
      url = "http://GR14.com",
      voteCount = 100000013
    },
    {
      address: TZHvwiw9cehbMxrtTbmAexm9oPo4eFFvLS,
      url = "http://GR15.com",
      voteCount = 100000012
    },
    {
      address: TGK6iAKgBmHeQyp5hn3imB71EDnFPkXiPR,
      url = "http://GR16.com",
      voteCount = 100000011
    },
    {
      address: TLaqfGrxZ3dykAFps7M2B4gETTX1yixPgN,
      url = "http://GR17.com",
      voteCount = 100000010
    },
    {
      address: TX3ZceVew6yLC5hWTXnjrUFtiFfUDGKGty,
      url = "http://GR18.com",
      voteCount = 100000009
    },
    {
      address: TYednHaV9zXpnPchSywVpnseQxY9Pxw4do,
      url = "http://GR19.com",
      voteCount = 100000008
    },
    {
      address: TCf5cqLffPccEY7hcsabiFnMfdipfyryvr,
      url = "http://GR20.com",
      voteCount = 100000007
    },
    {
      address: TAa14iLEKPAetX49mzaxZmH6saRxcX7dT5,
      url = "http://GR21.com",
      voteCount = 100000006
    },
    {
      address: TBYsHxDmFaRmfCF3jZNmgeJE8sDnTNKHbz,
      url = "http://GR22.com",
      voteCount = 100000005
    },
    {
      address: TEVAq8dmSQyTYK7uP1ZnZpa6MBVR83GsV6,
      url = "http://GR23.com",
      voteCount = 100000004
    },
    {
      address: TRKJzrZxN34YyB8aBqqPDt7g4fv6sieemz,
      url = "http://GR24.com",
      voteCount = 100000003
    },
    {
      address: TRMP6SKeFUt5NtMLzJv8kdpYuHRnEGjGfe,
      url = "http://GR25.com",
      voteCount = 100000002
    },
    {
      address: TDbNE1VajxjpgM5p7FyGNDASt3UVoFbiD3,
      url = "http://GR26.com",
      voteCount = 100000001
    },
    {
      address: TLTDZBcPoJ8tZ6TTEeEqEvwYFk2wgotSfD,
      url = "http://GR27.com",
      voteCount = 100000000
    }
  ]

  timestamp = "0" # Genesis block timestamp, milli seconds

  parentHash = "0xe58f33f9baf9305dc6f82b9f1934ea8f0ade2defb951258d50167028c780351f"
}

# Optional. Used when the witness account has set witnessPermission.
# localWitnessAccountAddress is the witness account address;
# localwitness is configured with the private key of the witnessPermissionAddress.
# When empty, localwitness is the private key of the witness account itself.
# localWitnessAccountAddress =

localwitness = [
]

# localwitnesskeystore = [
#  "localwitnesskeystore.json"
# ]

block = {
  needSyncCheck = true
  maintenanceTimeInterval = 21600000 // 6 hours: 21600000(ms)
  proposalExpireTime = 259200000 // default value: 3 days: 259200000(ms), Note: this value is controlled by committee proposal
}

# Transaction reference block, default is "solid", configure to "head" may cause TaPos error
trx.reference.block = "solid" // "head" or "solid"

vm = {
  supportConstant = false
  maxEnergyLimitForConstant = 100000000
  minTimeRatio = 0.0
  maxTimeRatio = 5.0
  saveInternalTx = false
}

# These parameters are designed for private chain testing only and cannot be freely switched on or off in production systems.
# In production, they are controlled by on-chain committee proposals.
committee = {
  allowCreationOfContracts = 0  //mainnet:0 (reset by committee),test:1
  allowAdaptiveEnergy = 0  //mainnet:0 (reset by committee),test:1
}

event.subscribe = {
  enable = false // enable event subscribe, replaces deprecated CLI flag --es
  native = {
    useNativeQueue = true // if true, use native message queue, else use event plugin.
    bindport = 5555 // bind port
    sendqueuelength = 1000 //max length of send queue
  }
  version = 0
  # Specify the starting block number to sync historical events. Only applicable when version = 1.
  # After performing a full event sync, set this value to 0 or a negative number.
  # startSyncBlockNum = 1

  path = "" // absolute path of plugin
  server = "" // target server address to receive event triggers, "ip:port"
  dbconfig = "" // dbname|username|password (append |2 to auto-create indexes on missing collections)
  contractParse = true
  topics = [
    {
      triggerName = "block" // block trigger, the value can't be modified
      enable = false
      topic = "block" // plugin topic, the value could be modified
      solidified = false // if set true, just need solidified block. Default: false
    },
    {
      triggerName = "transaction"
      enable = false
      topic = "transaction"
      solidified = false
      ethCompatible = false // if set true, add transactionIndex, cumulativeEnergyUsed, preCumulativeLogCount, logList, energyUnitPrice. Default: false
    },
    {
      triggerName = "contractevent" // contractevent represents contractlog data decoded by the ABI.
      enable = false
      topic = "contractevent"
    },
    {
      triggerName = "contractlog"
      enable = false
      topic = "contractlog"
      redundancy = false // if set true, contractevent will also be regarded as contractlog
    },
    {
      triggerName = "solidity" // solidity block trigger(just include solidity block number and timestamp), the value can't be modified
      enable = false
      topic = "solidity"
    },
    {
      triggerName = "solidityevent"
      enable = false
      topic = "solidityevent"
    },
    {
      triggerName = "soliditylog"
      enable = false
      topic = "soliditylog"
      redundancy = false // if set true, solidityevent will also be regarded as soliditylog
    }
  ]

  filter = {
    fromblock = "" // the value could be "", "earliest" or a specified block number as the beginning of the queried range
    toblock = "" // the value could be "", "latest" or a specified block number as end of the queried range
    contractAddress = [
      "" // contract address you want to subscribe, if it's set to "", you will receive contract logs/events with any contract address.
    ]

    contractTopic = [
      "" // contract topic you want to subscribe, if it's set to "", you will receive contract logs/events with any contract topic.
    ]
  }
}

Logs

03:03:03.081 INFO  [peerWorker-16] [net](P2pEventHandlerImpl.java:160) Receive message from  peer: /3.222.115.84:49560, type: BLOCK_CHAIN_INVENTORY
size: 2001, first blockId: Num:84848947,ID:00000000050eb133f4b6b7b769c07117f4a675383b1e5a3838ebdec1ad5964b6, end blockId: Num:84850947,ID:00000000050eb9033daec30a0759d73319c907b4c4478afde4adf61e6d746f02, remain_num: 105725
03:03:03.189 INFO  [peerWorker-36] [net](P2pEventHandlerImpl.java:160) Receive message from  peer: /45.32.176.35:57714, type: P2P_DISCONNECT
reason: BAD_PROTOCOL
03:03:03.190 INFO  [peerWorker-36] [net](P2pChannelInitializer.java:45) Close channel:/45.32.176.35:57714
03:03:03.190 INFO  [peerWorker-36] [net](ConnPoolService.java:270) Peer stats: channels 132, activePeers 132, active 13, passive 119
03:03:03.331 INFO  [peerWorker-24] [net](ChannelManager.java:215) Receive message from channel: /144.202.53.20:43374, [HelloMessage: from {
  address: "144.202.53.20"
  port: 18888
  nodeId: "66ddee6596aad032458814b8b5ff16a3c02f0f444cc5fae2bdefb72f7e63d6075e5324ff0e590ef4bb7ecfe14038ca516b5d89f26610b1fe681eae5a0b56ac2a"
}
network_id: 11111
timestamp: 1785540782028
version: 1

03:03:03.331 INFO  [peerWorker-24] [net](ChannelManager.java:118) Peer /144.202.53.20:43374 | 66ddee6596aad032458814b8b5ff16a3c02f0f444cc5fae2bdefb72f7e63d6075e5324ff0e590ef4bb7ecfe14038ca516b5d89f26610b1fe681eae5a0b56ac2a recently disconnected
03:03:03.332 INFO  [peerWorker-24] [net](Channel.java:140) Send message to channel /144.202.53.20:43374, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
code: 3
timestamp: 1785540782028
version: 1

03:03:03.332 INFO  [peerWorker-24] [net](ChannelManager.java:179) Try to close channel: /144.202.53.20:43374, reason: RECENT_DISCONNECT
03:03:03.332 INFO  [peerWorker-24] [net](P2pChannelInitializer.java:45) Close channel:/144.202.53.20:43374
03:03:03.332 INFO  [peerWorker-24] [net](ConnPoolService.java:270) Peer stats: channels 132, activePeers 132, active 13, passive 119
03:03:03.399 INFO  [peerWorker-25] [net](ChannelManager.java:215) Receive message from channel: /194.58.33.49:35586, [HelloMessage: from {
  address: "194.58.33.49"
  port: 18888
  nodeId: "9b27d12e5b0f906155e9efb619636aad5e01ae1c85e0e72ecf85e3e521fcd75a7f78d699ead19fdb586bb1416058ec788b54f4f8ffe8f3ddbd7cc15620c1b74b"
}
network_id: 11111
timestamp: 1785540783258
version: 1

03:03:03.399 INFO  [peerWorker-25] [net](ChannelManager.java:140) Duplicate peer /194.58.33.49:35586 | 9b27d12e5b0f906155e9efb619636aad5e01ae1c85e0e72ecf85e3e521fcd75a7f78d699ead19fdb586bb1416058ec788b54f4f8ffe8f3ddbd7cc15620c1b74b, exist peer /194.58.33.49:18888 | 9b27d12e5b0f906155e9efb619636aad5e01ae1c85e0e72ecf85e3e521fcd75a7f78d699ead19fdb586bb1416058ec788b54f4f8ffe8f3ddbd7cc15620c1b74b
03:03:03.400 INFO  [peerWorker-25] [net](Channel.java:140) Send message to channel /194.58.33.49:35586, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
code: 4
timestamp: 1785540783258
version: 1

03:03:03.401 INFO  [peerWorker-25] [net](ChannelManager.java:179) Try to close channel: /194.58.33.49:35586, reason: DUPLICATE_PEER
03:03:03.401 INFO  [peerWorker-25] [net](P2pChannelInitializer.java:45) Close channel:/194.58.33.49:35586
03:03:03.401 INFO  [peerWorker-25] [net](ConnPoolService.java:270) Peer stats: channels 132, activePeers 132, active 13, passive 119
03:03:03.476 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /3.225.171.164:18888
03:03:03.476 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /52.8.46.215:18888
03:03:03.476 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /3.79.71.167:18888
03:03:03.476 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /108.128.110.16:18888
03:03:03.476 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /18.133.82.227:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /78.46.80.62:18889
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /37.27.100.16:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /185.188.42.34:39960
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /162.35.178.22:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /35.236.173.134:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /46.224.54.174:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /176.9.89.114:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /167.172.88.117:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /141.95.84.70:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /103.125.216.72:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /146.59.118.198:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /5.149.248.87:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /69.162.121.64:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /167.235.155.135:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /65.21.93.32:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /65.109.48.180:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /37.27.245.13:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /164.90.252.162:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /46.28.234.62:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /47.83.123.20:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /186.2.171.3:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /44.222.80.170:18918
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /18.206.50.220:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /23.227.221.79:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /167.235.94.190:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /44.222.80.170:18915
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /208.115.251.243:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /95.214.52.240:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /34.195.52.104:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /49.12.227.189:18888
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /44.222.80.170:18923
03:03:03.477 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /46.166.162.90:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /45.137.213.40:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /23.109.159.68:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /167.235.88.216:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /18.209.42.127:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /34.48.188.83:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /38.155.79.209:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /213.227.150.100:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /34.86.86.229:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /34.141.113.78:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /35.240.220.87:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /95.211.170.39:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /203.161.35.206:35271
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /213.96.3.250:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /16.162.60.213:18888
03:03:03.478 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /47.76.75.153:18888
03:03:03.624 INFO  [peerClient-34] [net](Channel.java:140) Send message to channel /78.46.80.62:18889, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.627 INFO  [peerClient-31] [net](Channel.java:140) Send message to channel /3.79.71.167:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783476
version: 1

03:03:03.639 INFO  [peerClient-36] [net](Channel.java:140) Send message to channel /185.188.42.34:39960, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.639 INFO  [peerClient-40] [net](Channel.java:140) Send message to channel /176.9.89.114:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.640 INFO  [peerClient-39] [net](Channel.java:140) Send message to channel /46.224.54.174:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.640 INFO  [peerClient-47] [net](Channel.java:140) Send message to channel /167.235.155.135:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.640 INFO  [peerClient-10] [net](Channel.java:140) Send message to channel /167.235.94.190:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.640 INFO  [peerClient-42] [net](Channel.java:140) Send message to channel /141.95.84.70:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.640 INFO  [peerClient-33] [net](Channel.java:140) Send message to channel /18.133.82.227:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.640 INFO  [peerClient-20] [net](Channel.java:140) Send message to channel /167.235.88.216:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783478
version: 1

03:03:03.640 INFO  [peerClient-12] [net](Channel.java:140) Send message to channel /208.115.251.243:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.640 INFO  [peerClient-45] [net](Channel.java:140) Send message to channel /5.149.248.87:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.640 INFO  [peerClient-4] [net](Channel.java:140) Send message to channel /46.28.234.62:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.640 INFO  [peerClient-15] [net](Channel.java:140) Send message to channel /49.12.227.189:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.640 INFO  [peerClient-35] [net](Channel.java:140) Send message to channel /37.27.100.16:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.640 INFO  [peerClient-32] [net](Channel.java:140) Send message to channel /108.128.110.16:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.645 INFO  [peerClient-44] [net](Channel.java:140) Send message to channel /146.59.118.198:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.645 INFO  [peerClient-24] [net](Channel.java:140) Send message to channel /213.227.150.100:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783478
version: 1

03:03:03.645 INFO  [peerClient-13] [net](Channel.java:140) Send message to channel /95.214.52.240:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.645 INFO  [peerClient-19] [net](Channel.java:140) Send message to channel /23.109.159.68:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783478
version: 1

03:03:03.645 INFO  [peerClient-26] [net](Channel.java:140) Send message to channel /34.141.113.78:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783478
version: 1

03:03:03.645 INFO  [peerClient-48] [net](Channel.java:140) Send message to channel /65.21.93.32:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.645 INFO  [peerClient-1] [net](Channel.java:140) Send message to channel /65.109.48.180:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.651 INFO  [peerClient-2] [net](Channel.java:140) Send message to channel /37.27.245.13:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.651 INFO  [peerClient-28] [net](Channel.java:140) Send message to channel /95.211.170.39:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783478
version: 1

03:03:03.661 INFO  [peerClient-17] [net](Channel.java:140) Send message to channel /46.166.162.90:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783478
version: 1

03:03:03.670 INFO  [peerClient-6] [net](Channel.java:140) Send message to channel /186.2.171.3:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.707 INFO  [peerClient-30] [net](Channel.java:140) Send message to channel /213.96.3.250:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783478
version: 1

03:03:03.707 INFO  [peerClient-29] [net](Channel.java:140) Send message to channel /3.225.171.164:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783476
version: 1

03:03:03.709 INFO  [peerClient-46] [net](Channel.java:140) Send message to channel /69.162.121.64:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.711 INFO  [peerClient-3] [net](Channel.java:140) Send message to channel /164.90.252.162:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.721 INFO  [peerWorker-26] [net](ChannelManager.java:215) Receive message from channel: /45.76.82.231:57864, [HelloMessage: from {
  address: "45.76.82.231"
  port: 18888
  nodeId: "34f28557a66135f4ac268a0dcf6a3c41ebd5042ced8d9b97de010102c8e715b129f1af0a099398f3caac27084702329f12fcd8a443820660808317a549220c4d"
}
network_id: 11111
timestamp: 1785540783590
version: 1

03:03:03.721 INFO  [peerWorker-26] [net](ChannelManager.java:118) Peer /45.76.82.231:57864 | 34f28557a66135f4ac268a0dcf6a3c41ebd5042ced8d9b97de010102c8e715b129f1af0a099398f3caac27084702329f12fcd8a443820660808317a549220c4d recently disconnected
03:03:03.721 INFO  [peerWorker-26] [net](Channel.java:140) Send message to channel /45.76.82.231:57864, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
code: 3
timestamp: 1785540783590
version: 1

03:03:03.722 INFO  [peerWorker-26] [net](ChannelManager.java:179) Try to close channel: /45.76.82.231:57864, reason: RECENT_DISCONNECT
03:03:03.722 INFO  [peerWorker-26] [net](P2pChannelInitializer.java:45) Close channel:/45.76.82.231:57864
03:03:03.722 INFO  [peerWorker-26] [net](ConnPoolService.java:270) Peer stats: channels 132, activePeers 132, active 13, passive 119
03:03:03.734 INFO  [peerClient-22] [net](Channel.java:140) Send message to channel /34.48.188.83:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783478
version: 1

03:03:03.734 INFO  [peerClient-14] [net](Channel.java:140) Send message to channel /34.195.52.104:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.734 INFO  [peerClient-21] [net](Channel.java:140) Send message to channel /18.209.42.127:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783478
version: 1

03:03:03.734 INFO  [peerClient-8] [net](Channel.java:140) Send message to channel /18.206.50.220:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.734 INFO  [peerClient-25] [net](Channel.java:140) Send message to channel /34.86.86.229:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783478
version: 1

03:03:03.740 INFO  [peerClient-37] [net](Channel.java:140) Send message to channel /162.35.178.22:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783477
version: 1

03:03:03.757 INFO  [peerClient-34] [net](ChannelManager.java:215) Receive message from channel: /78.46.80.62:18889, [HelloMessage: from {
  address: "78.46.80.62"
  port: 18889
  nodeId: "ca237fc64d5034c20133b215ae6c9e46e5698a521bedf4ea729802481941937fc28b4ea10654e4fe16a92c8f98c2f45dc6ab78ce48dd9d0362f8b2da4dd0bd37"
}
network_id: 11111
timestamp: 1785540783758

03:03:03.757 INFO  [peerClient-34] [net](ChannelManager.java:149) Add peer /78.46.80.62:18889, total channels: 133
03:03:03.757 INFO  [peerClient-34] [net](ConnPoolService.java:270) Peer stats: channels 133, activePeers 133, active 14, passive 119
03:03:03.757 INFO  [peerClient-34] [net](PeerConnection.java:202) Send peer /78.46.80.62:18889 message type: P2P_HELLO
from: /113.203.66.187:18888
timestamp: 1785540783477
headBlockId: Num:84846947,ID:00000000050ea963be1285e66544e7cc23214f70eab13642d217d2dc7b0591c5
nodeType: 1
lowestBlockNum: 84661938
codeVersion:4.8.2

03:03:03.758 INFO  [peerClient-34] [net](P2pEventHandlerImpl.java:160) Receive message from  peer: /78.46.80.62:18889, type: P2P_HELLO
from: /78.46.80.62:18889
timestamp: 1785540783754
headBlockId: Num:46774407,ID:0000000002c9b887ddd03305e919980fcc0e7f50d69d3fcbf981927492d5d48f
nodeType: 0
lowestBlockNum: 0

03:03:03.758 INFO  [peerClient-34] [net](HandshakeService.java:108) Peer /78.46.80.62:18889 solid block is below than my lowest
03:03:03.758 INFO  [peerClient-34] [net](PeerConnection.java:202) Send peer /78.46.80.62:18889 message type: P2P_DISCONNECT
reason: LIGHT_NODE_SYNC_FAIL
03:03:03.758 INFO  [peerClient-34] [net](P2pChannelInitializer.java:45) Close channel:/78.46.80.62:18889
03:03:03.758 INFO  [peerClient-34] [net](ConnPoolService.java:270) Peer stats: channels 132, activePeers 132, active 13, passive 119
03:03:03.759 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /57.129.36.238:18888
03:03:03.766 INFO  [peerClient-18] [net](Channel.java:140) Send message to channel /45.137.213.40:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783478
version: 1

03:03:03.766 INFO  [peerClient-30] [net](Channel.java:140) Send message to channel /52.8.46.215:18888, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783476
version: 1

03:03:03.770 INFO  [peerClient-36] [net](ChannelManager.java:215) Receive message from channel: /185.188.42.34:39960, [HelloMessage: from {
  address: "185.188.42.34"
  port: 39960
  nodeId: "ce2bd6be0c3bc0c9bbccf35d408c14dc6162311577a09a33e8b3bec92692691dfa263c108d3d78a34fca9f64db6fc36029037c67a2964a0851a38f80803a6ab9"
}
network_id: 11111
code: 1
timestamp: 1785540783477
version: 1

03:03:03.770 INFO  [peerClient-36] [net](ChannelManager.java:149) Add peer /185.188.42.34:39960, total channels: 133
03:03:03.771 INFO  [peerClient-36] [net](HandshakeService.java:58) Handshake failed /185.188.42.34:39960, code: 1, reason: TOO_MANY_PEERS, networkId: 11111, version: 1
03:03:03.771 INFO  [peerClient-36] [net](ChannelManager.java:179) Try to close channel: /185.188.42.34:39960, reason: TOO_MANY_PEERS
03:03:03.771 INFO  [peerClient-36] [net](P2pChannelInitializer.java:45) Close channel:/185.188.42.34:39960
03:03:03.771 INFO  [peerClient-36] [net](ConnPoolService.java:270) Peer stats: channels 132, activePeers 132, active 13, passive 119
03:03:03.772 INFO  [connPool] [net](ConnPoolService.java:198) Connect to peer /31.177.111.168:18888
03:03:03.794 INFO  [peerClient-29] [net](Channel.java:140) Send message to channel /203.161.35.206:35271, [HelloMessage: from {
  address: "113.203.66.187"
  port: 18888
  nodeId: "cf389124d31db570b29eeb8350c416e54de30a47f0318c99f3e27bb3413940c22cdd1603abbda5cf4c7497b78b8068cac9207c009d6ad030b2259afb4fa95454"
}
network_id: 11111
timestamp: 1785540783478
version: 1

03:03:03.794 INFO  [peerClient-31] [net](ChannelManager.java:215) Receive message from channel: /3.79.71.167:18888, [HelloMessage: from {
  address: "3.79.71.167"
  port: 18888
  nodeId: "be0d09c95bfcd89b425f7e159e6be7b957c786dbac7929e730d0db9d7914fb6def115366ca8c93bb57c918200c6f4d496858761025b142db2e787f1f61f1b16f"
}
network_id: 11111
code: 3
timestamp: 1785540783476
version: 1

03:03:03.794 INFO  [peerClient-31] [net](ChannelManager.java:149) Add peer /3.79.71.167:18888, total channels: 133
03:03:03.794 INFO  [peerClient-31] [net](HandshakeService.java:58) Handshake failed /3.79.71.167:18888, code: 3, reason: TIME_BANNED, networkId: 11111, version: 1
03:03:03.794 INFO  [peerClient-31] [net](ChannelManager.java:179) Try to close channel: /3.79.71.167:18888, reason: RECENT_DISCONNECT
03:03:03.794 INFO  [peerClient-40] [net](ChannelManager.java:215) Receive message from channel: /176.9.89.114:18888, [HelloMessage: from {
  address: "176.9.89.114"
  port: 18888
  nodeId: "c602099300959d84a6dea9fcb5f92a26b396235e684f456edb8c4906b170d37b7529d48a7e1cf2c5181d5527ef9eef50a5a4d4b577a2c8a2b5f03631473711ed"
}
network_id: 11111
code: 1
timestamp: 1785540783477
version: 1

03:03:03.794 INFO  [peerClient-10] [net](ChannelManager.java:215) Receive message from channel: /167.235.94.190:18888, [HelloMessage: from {
  address: "167.235.94.190"
  port: 18888
  nodeId: "d13201e1ac2b0aa79b5fa0e73f5605e406022dfe83c4f6d0eb6f1c9bba4a5ebcda8e769f35fd313debc138a1a83bbe3040de5fbec8ceb72d2b4b96848e0cee89"
}
network_id: 11111
code: 1
timestamp: 1785540783477
version: 1

03:03:03.794 INFO  [peerClient-40] [net](ChannelManager.java:149) Add peer /176.9.89.114:18888, total channels: 134
03:03:03.794 INFO  [peerClient-47] [net](ChannelManager.java:215) Receive message from channel: /167.235.155.135:18888, [HelloMessage: from {
  address: "167.235.155.135"
  port: 18888
  nodeId: "cd1b88635ab02ce74452baeecf80c5609857f71ef6af2b7bc6d87e025e2fa2ac941847cd706a3b79853981cec1a4540df4e2bad053322b2c4d377a0066ad6eb6"
}
network_id: 11111
timestamp: 1785540783477

03:03:03.794 INFO  [peerClient-31] [net](P2pChannelInitializer.java:45) Close channel:/3.79.71.167:18888
03:03:03.794 INFO  [peerClient-10] [net](ChannelManager.java:149) Add peer /167.235.94.190:18888, total channels: 135
03:03:03.794 INFO  [peerClient-31] [net](ConnPoolService.java:270) Peer stats: channels 134, activePeers 132, active 13, passive 119
03:03:03.794 INFO  [peerClient-47] [net](ChannelManager.java:149) Add peer /167.235.155.135:18888, total channels: 135
03:03:03.794 INFO  [peerClient-10] [net](HandshakeService.java:58) Handshake failed /167.235.94.190:18888, code: 1, reason: TOO_MANY_PEERS, networkId: 11111, version: 1
03:03:03.794 INFO  [peerClient-10] [net](ChannelManager.java:179) Try to close channel: /167.235.94.190:18888, reason: TOO_MANY_PEERS
03:03:03.794 INFO  [peerClient-47] [net](ConnPoolService.java:270) Peer stats: channels 135, activePeers 133, active 14, passive 119
03:03:03.794 INFO  [peerClient-40] [net](HandshakeService.java:58) Handshake failed /176.9.89.114:18888, code: 1, reason: TOO_MANY_PEERS, networkId: 11111, version: 1
03:03:03.794 INFO  [peerClient-40] [net](ChannelManager.java:179) Try to close channel: /176.9.89.114:18888, reason: TOO_MANY_PEERS
03:03:03.794 INFO  [peerClient-10] [net](P2pChannelInitializer.java:45) Close channel:/167.235.94.190:18888
03:03:03.794 INFO  [peerClient-10] [net](ConnPoolService.java:270) Peer stats: channels 134, activePeers 133, active 14, passive 119
03:03:03.794 INFO  [peerClient-40] [net](P2pChannelInitializer.java:45) Close channel:/176.9.89.114:18888
03:03:03.795 INFO  [peerClient-40] [net](ConnPoolService.java:270) Peer stats: channels 133, activePeers 133, active 14, passive 119
03:03:03.795 INFO  [peerClient-47] [net](PeerConnection.java:202) Send peer /167.235.155.135:18888 message type: P2P_HELLO
from: /113.203.66.187:18888
timestamp: 1785540783477
headBlockId: Num:84846947,ID:00000000050ea963be1285e66544e7cc23214f70eab13642d217d2dc7b0591c5
nodeType: 1
lowestBlockNum: 84661938
codeVersion:4.8.2

03:03:03.795 INFO  [peerClient-39] [net](ChannelManager.java:215) Receive message from channel: /46.224.54.174:18888, [HelloMessage: from {
  address: "46.224.54.174"
  port: 18888
  nodeId: "d91f4af03fbec18583756a2340f2f3cf5a8bab981a3483370a862d9d16d30c854fd839d8451d69f63f0db7bb843380079bcf59f53923b92fdbd6b554efd2c832"
}
network_id: 11111
code: 1
timestamp: 1785540783477
version: 1

03:03:03.795 INFO  [peerClient-12] [net](ChannelManager.java:215) Receive message from channel: /208.115.251.243:18888, [HelloMessage: from {
  address: "208.115.251.243"
  port: 18888
  nodeId: "db0b6833889c10fe017e6aa035173ac8c903c196431830578cafc586de4fea8a79fc7588a66575d3f3289b766f9001fc49235be37a40989b9fa3c420f940f1d0"
}
network_id: 11111
code: 1
timestamp: 1785540783477
version: 1

03:03:03.795 INFO  [peerClient-39] [net](ChannelManager.java:149) Add peer /46.224.54.174:18888, total channels: 134
03:03:03.795 INFO  [peerClient-20] [net](ChannelManager.java:215) Receive message from channel: /167.235.88.216:18888, [HelloMessage: from {
  address: "167.235.88.216"
  port: 18888
  nodeId: "decfb77c5c8f813793cf0f54cf498de384a7cbe1187a9fd1ff568045730288c0af4af37c8d124fe003f54b08b44b24f8504d2b2796f1bacf7e54f23191f23c44"
}
network_id: 11111
code: 3
timestamp: 1785540783478
version: 1

03:03:03.795 INFO  [peerClient-12] [net](ChannelManager.java:149) Add peer /208.115.251.243:18888, total channels: 135
03:03:03.795 INFO  [peerClient-15] [net](ChannelManager.java:215) Receive message from channel: /49.12.227.189:18888, [HelloMessage: from {
  address: "49.12.227.189"
  port: 18888
  nodeId: "cb2f6eecde920484d8ad06df91d7a660a112c4ac1a21a6c505b276c54a9321ff401fc82dbcb744dcf60804da1b3a0afdcde38ebf24de413b84f8170830864a6d"
}
network_id: 11111
code: 1
timestamp: 1785540783477
version: 1

03:03:03.795 INFO  [peerClient-39] [net](HandshakeService.java:58) Handshake failed /46.224.54.174:18888, code: 1, reason: TOO_MANY_PEERS, networkId: 11111, version: 1
03:03:03.795 INFO  [peerClient-20] [net](ChannelManager.java:149) Add peer /167.235.88.216:18888, total channels: 136
03:03:03.795 INFO  [peerClient-39] [net](ChannelManager.java:179) Try to close channel: /46.224.54.174:18888, reason: TOO_MANY_PEERS
03:03:03.795 INFO  [peerClient-15] [net](ChannelManager.java:149) Add peer /49.12.227.189:18888, total channels: 137
03:03:03.795 INFO  [peerClient-20] [net](HandshakeService.java:58) Handshake failed /167.235.88.216:18888, code: 3, reason: TIME_BANNED, networkId: 11111, version: 1
03:03:03.795 INFO  [peerClient-39] [net](P2pChannelInitializer.java:45) Close channel:/46.224.54.174:18888
03:03:03.795 INFO  [peerClient-47] [net](P2pEventHandlerImpl.java:160) Receive message from  peer: /167.235.155.135:18888, type: P2P_HELLO
from: /167.235.155.135:18888
timestamp: 1785540783785
headBlockId: Num:84956673,ID:00000000051056019510bbb70a46dd9bc4a05bada0a03af8a3a96677b661d948
nodeType: 1
lowestBlockNum: 67820592
codeVersion:4.8.1

03:03:03.795 INFO  [peerClient-20] [net](ChannelManager.java:179) Try to close channel: /167.235.88.216:18888, reason: RECENT_DISCONNECT
03:03:03.795 INFO  [peerClient-15] [net](HandshakeService.java:58) Handshake failed /49.12.227.189:18888, code: 1, reason: TOO_MANY_PEERS, networkId: 11111, version: 1
03:03:03.795 INFO  [peerClient-39] [net](ConnPoolService.java:270) Peer stats: channels 136, activePeers 133, active 14, passive 119
03:03:03.795 INFO  [peerClient-15] [net](ChannelManager.java:179) Try to close channel: /49.12.227.189:18888, reason: TOO_MANY_PEERS
03:03:03.795 INFO  [peerClient-12] [net](HandshakeService.java:58) Handshake failed /208.115.251.243:18888, code: 1, reason: TOO_MANY_PEERS, networkId: 11111, version: 1
03:03:03.795 INFO  [peerClient-20] [net](P2pChannelInitializer.java:45) Close channel:/167.235.88.216:18888
03:03:03.796 INFO  [peerClient-12] [net](ChannelManager.java:179) Try to close channel: /208.115.251.243:18888, reason: TOO_MANY_PEERS
03:03:03.795 INFO  [peerClient-42] [net](ChannelManager.java:215) Receive message from channel: /141.95.84.70:18888, [HelloMessage: from {
  address: "141.95.84.70"
  port: 18888
  nodeId: "c4edd62517f0bf3b8bcf416acf7cfc131aa165d2bac4f9d75ebd639f92914e9d33d57f4cb35c516ca2caa1312f79c15e8cd6149dad0f4aae57ca326a0b53ee47"
}
network_id: 11111
code: 1
timestamp: 1785540783477
version: 1

Any suggestions or recommendations would be greatly appreciated. Thank you!

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions