From 662af28bf811c771cf0fdf9b583c1296a2283188 Mon Sep 17 00:00:00 2001 From: Hansie Odendaal <39146854+hansieodendaal@users.noreply.github.com> Date: Sat, 9 Dec 2023 21:41:32 +0200 Subject: [PATCH] fix: remove duplicate config settings (#6029) Description --- Removed duplicate config settings in `b_peer_seeds.toml` introduced by a recent PR Motivation and Context --- See above How Has This Been Tested? --- Tested the clean `config.toml` creation with `cargo run --release --bin minotari_node` What process can a PR reviewer use to test or verify this change? --- Performa clean `cargo run --release --bin minotari_node` and review the created `config.toml` Breaking Changes --- - [x] None - [ ] Requires data directory on base node to be deleted - [ ] Requires hard fork - [ ] Other - Please specify --- common/config/presets/b_peer_seeds.toml | 43 ------------------------- 1 file changed, 43 deletions(-) diff --git a/common/config/presets/b_peer_seeds.toml b/common/config/presets/b_peer_seeds.toml index 759033cb92..62cc16fbf7 100644 --- a/common/config/presets/b_peer_seeds.toml +++ b/common/config/presets/b_peer_seeds.toml @@ -60,46 +60,3 @@ peer_seeds = [ # da4000fb6a031eced4ce65fe31 "9c127e9451d6721bfbe2b75434fcc19f6c7ab23523d4dacf7f5f5d601d2c8840::/onion3/kfh6trtkccp6mdbob42sb3sd464lzorn2ufys4zglnqhoxzsa4souaqd:18141" ] - -######################################################################################################################## -# # -# Base Node Configuration Options (BaseNodeConfig) # -# # -######################################################################################################################## - -# If you are not running a Minotari Base node, you can simply leave everything in this section commented out. Base nodes -# help maintain the security of the Minotari token and are the surest way to preserve your privacy and be 100% sure that -# no-one is cheating you out of your money. - -[dibbler.base_node] -# A path to the file that stores your node identity and secret key (default = "config/base_node_id.json") -identity_file = "config/base_node_id_dibbler.json" - -[igor.base_node] -# A path to the file that stores your node identity and secret key (default = "config/base_node_id.json") -identity_file = "config/base_node_id_igor.json" - -[esmeralda.base_node] -# A path to the file that stores your node identity and secret key (default = "config/base_node_id.json") -identity_file = "config/base_node_id_esmeralda.json" - -[stagenet.base_node] -# A path to the file that stores your node identity and secret key (default = "config/base_node_id.json") -identity_file = "config/base_node_id_stagenet.json" - -[nextnet.base_node] -# A path to the file that stores your node identity and secret key (default = "config/base_node_id.json") -identity_file = "config/base_node_id_nextnet.json" - -[base_node] -# Set to false to disable the base node GRPC server (default = true) -#grpc_enabled = true - -# The socket to expose for the gRPC base node server (default = "/ip4/127.0.0.1/tcp/18142") -#grpc_address = "/ip4/127.0.0.1/tcp/18142" - -# gRPC authentication method (default = "none") -#grpc_authentication = { username = "admin", password = "xxxx" } - -# Use gRPC over TLS (default = false) -#grpc_tls_enabled = false