mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-10 12:26:02 +00:00
85fdb61699
* For snap sync, publish `EthWireRef` in sync descriptor why: currently used for noise control * Detect and reuse existing storage slots * Provide healing module for storage slots * Update statistic ticker (adding range factor for unprocessed storage) * Complete mere function for work item ranges why: Merging interval into existing partial item was missing * Show av storage queue lengths in ticker detail; Previous attempt shows average completeness which did not tell much * Correct the meaning of the storage counter (per pivot) detail: Is the # accounts that have a storage saved
32 lines
1.1 KiB
Nim
32 lines
1.1 KiB
Nim
# Nimbus - Ethereum Wire Protocol, version eth/65
|
|
#
|
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
|
# Licensed under either of
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
# http://opensource.org/licenses/MIT)
|
|
# at your option. This file may not be copied, modified, or distributed
|
|
# except according to those terms.
|
|
|
|
const
|
|
# Some static noisy settings for `eth` debugging
|
|
trEthTracePacketsOk* = true
|
|
## `trace` log each sync network message.
|
|
trEthTraceGossipOk* = true and false
|
|
## `trace` log each sync network message.
|
|
trEthTraceHandshakesOk* = true
|
|
## `trace` log each network handshake message.
|
|
trEthTraceIndividualNodesOk* = true
|
|
## `trace` log each trie node, account, storage, receipt, etc.
|
|
|
|
# Some static noisy settings for `snap` debugging
|
|
trSnapTracePacketsOk* = true
|
|
## `trace` log each sync network message.
|
|
|
|
# Shut up particular eth context handler gossip
|
|
trMissingOrDisabledGossipOk* = true and false
|
|
## Control `handleAnnouncedTxsHashes`, `handleAnnouncedTxsHashes`, etc.
|
|
|
|
# End
|