mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-10 20:36:31 +00:00
73b628491d
* Add persistent snapshot size logging why: Suspecting too much space used snapshot statistic: [..] blockNumber=2214912 nSnaps=2236 snapsTotal=1.14m blockNumber=2215936 nSnaps=2237 snapsTotal=1.14m [..] Persisting blocks fromBlock=2216449 toBlock=2216640 36458496 datadir-nimbus-goerlish/data/nimbus/ * Replace legacy `lru_cache` by `keyed_queue` why: `keyed_queue` generalises `lru_cache` snapshot statistic: [..] blockNumber=2234368 nSnaps=2259 snapsTotal=1.15m blockNumber=2235392 nSnaps=2260 snapsTotal=1.15m [..] Persisting blocks fromBlock=2235649 toBlock=2235840 37627288 datadir-nimbus-goerlish/data/nimbus/ * Increase persistent snapshot storage interval by 300% snapshot statistic: [..] blockNumber=2232320 nSnaps=620 snapsTotal=0.30m blockNumber=2236416 nSnaps=621 snapsTotal=0.30m [..] Persisting blocks fromBlock=2237185 toBlock=2237376 37627288 datadir-nimbus-goerlish/data/nimbus/ * Cull legacy debugging environment for clique why: Chronicles provides a better choice (when properly set up)
50 lines
1.5 KiB
Nim
50 lines
1.5 KiB
Nim
# Nimbus
|
|
# Copyright (c) 2018-2019 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.
|
|
|
|
import ../test_macro
|
|
|
|
{. warning[UnusedImport]:off .}
|
|
|
|
cliBuilder:
|
|
import ./test_code_stream,
|
|
./test_accounts_cache,
|
|
./test_custom_network,
|
|
./test_sync_snap,
|
|
./test_jwt_auth,
|
|
./test_gas_meter,
|
|
./test_memory,
|
|
./test_stack,
|
|
./test_genesis,
|
|
./test_precompiles,
|
|
./test_generalstate_json,
|
|
./test_tracer_json,
|
|
./test_persistblock_json,
|
|
./test_rpc,
|
|
./test_filters,
|
|
./test_op_arith,
|
|
./test_op_bit,
|
|
./test_op_env,
|
|
./test_op_memory,
|
|
./test_op_misc,
|
|
./test_op_custom,
|
|
./test_state_db,
|
|
./test_difficulty,
|
|
./test_transaction_json,
|
|
./test_blockchain_json,
|
|
./test_forkid,
|
|
../stateless/test_witness_keys,
|
|
../stateless/test_block_witness,
|
|
../stateless/test_witness_json,
|
|
./test_misc,
|
|
./test_graphql,
|
|
./test_clique,
|
|
./test_pow,
|
|
./test_configuration,
|
|
./test_keyed_queue_rlp,
|
|
./test_txpool,
|
|
./test_merge
|