mirror of
https://github.com/hinto-janai/cuprate.git
synced 2025-01-21 10:14:30 +00:00
Boog900
503ef11514
* add cuprated skeleton
* fmt and add deny exception
* add main chain batch handler
* add blockchain init
* very rough block manager
* misc changes
* move more config values
* add new tables & types
* add function to fully add an alt block
* resolve current todo!s
* add new requests
* WIP: starting re-orgs
* add last service request
* commit Cargo.lock
* add test
* more docs + cleanup + alt blocks request
* clippy + fmt
* document types
* move tx_fee to helper
* more doc updates
* fmt
* fix imports
* remove config files
* fix merge errors
* fix generated coins
* handle more p2p requests + alt blocks
* clean up handler code
* add function for incoming blocks
* add docs to handler functions
* broadcast new blocks + add commands
* add fluffy block handler
* fix new block handling
* small cleanup
* increase outbound peer count
* fix merge
* clean up the blockchain manger
* add more docs + cleanup imports
* fix typo
* fix doc
* remove unrelated changes
* add `get_objects` handler
* add `get_chain` handler
* add `fluffy_missing_txs` handler
* add `new_fluffy_block` handler
* improve interface globals
* manger -> manager
* enums instead of bools
* move chain service to separate file
* more review fixes
* sort imports + docs
* init config
* init dandelion integration
* add dandelion start function
* finish incoming tx handler
* Add tx blob hash table
* Add missing txpool requests
* handle duplicate stem txs
* check txpool on incoming block
* add request to remove tx in new blocks from the pool
* tell the txpool about incoming blocks
* fix merge
* typos
* remove blockchain height from txpool
* fix merge
* fix merge
* handle incoming txs in p2p request handler
* split sections
* finish initial config.
* fix clap
* misc changes
* fix doc
* fix test & clippy
* fix test 2
* try fix windows
* testing
* testing 2
* fix windows test
* fix windows: the remix.
* Allow `IncomingTxHandler` to be given later
* add p2p clearnet init
* fix build
* misc changes
* review comments
* fix imports
* rename & fix default config file
* fix cargo hack
* enable serde on `cuprate-helper`
* changes from matrix chats
* fix ci
* fix doc
* fix doc test
* doc updates
* more doc updates
* sort imports
* add startup code
* d -> h
* add file logging
* fix stem peer service
* todo
* remove `get_range`
* change usages of `get_range`
* clippy
* cargo update
* fix test + update comment
* manually set numb threads for each pool
* fix address book saves
* add more data to status
* fix config
* cleanup main + logging
* add more info to output when changing log level
* cleanup commands
* fix small issue in block downloader more misc clean up
* cross block bp(+) batch verification
* add message when syncing is done
* Revert "cross block bp(+) batch verification"
This reverts commit 764c4663a0
.
* fix fmt & clippy
* move `io_loop` to commands
* review fixes
* fix clippy
* review fixes
64 lines
2.4 KiB
TOML
64 lines
2.4 KiB
TOML
# ____ _
|
|
# / ___| _ _ __ _ __ __ _| |_ ___
|
|
# | | | | | | '_ \| '__/ _` | __/ _ \
|
|
# | |__| |_| | |_) | | | (_| | || __/
|
|
# \____\__,_| .__/|_| \__,_|\__\___|
|
|
# |_|
|
|
#
|
|
|
|
## The network to run on, valid values: "Mainnet", "Testnet", "Stagenet".
|
|
network = "Mainnet"
|
|
|
|
## Tracing config.
|
|
[tracing]
|
|
## The stdout logging config.
|
|
stdout = { level = "info" }
|
|
## The file output logging config.
|
|
file = { level = "debug", max_log_files = 7 }
|
|
|
|
## Clear-net config.
|
|
[p2p.clear_net]
|
|
## The number of outbound connections we should make and maintain.
|
|
outbound_connections = 64
|
|
## The number of extra connections we should make under load from the rest of Cuprate, i.e. when syncing.
|
|
extra_outbound_connections = 8
|
|
## The maximum number of incoming we should allow.
|
|
max_inbound_connections = 128
|
|
## The percent of outbound connections that should be to nodes we have not connected to before.
|
|
gray_peers_percent = 0.7
|
|
## The port to accept connections on, if left `0` no connections will be accepted.
|
|
p2p_port = 0
|
|
## The IP address to listen to connections on.
|
|
listen_on = "0.0.0.0"
|
|
|
|
## The Clear-net addressbook config.
|
|
[p2p.clear_net.address_book_config]
|
|
## The size of the white peer list, which contains peers we have made a connection to before.
|
|
max_white_list_length = 1_000
|
|
## The size of the gray peer list, which contains peers we have not made a connection to before.
|
|
max_gray_list_length = 5_000
|
|
## The amount of time between address book saves.
|
|
peer_save_period = { secs = 90, nanos = 0 }
|
|
|
|
## The block downloader config.
|
|
[p2p.block_downloader]
|
|
## The size of the buffer of sequential blocks waiting to be verified and added to the chain (bytes).
|
|
buffer_bytes = 50_000_000
|
|
## The size of the queue of blocks which are waiting for a parent block to be downloaded (bytes).
|
|
in_progress_queue_bytes = 50_000_000
|
|
## The target size of a batch of blocks (bytes), must not exceed 100MB.
|
|
target_batch_bytes = 10_000_000
|
|
## The amount of time between checking the pool of connected peers for free peers to download blocks.
|
|
check_client_pool_interval = { secs = 30, nanos = 0 }
|
|
|
|
## Txpool storage config.
|
|
[storage.txpool]
|
|
## The database sync mode for the txpool.
|
|
sync_mode = "Async"
|
|
## The maximum size of all the txs in the pool (bytes).
|
|
max_txpool_byte_size = 100_000_000
|
|
|
|
## Blockchain storage config.
|
|
[storage.blockchain]
|
|
## The database sync mode for the blockchain.
|
|
sync_mode = "Async"
|