Skip to content

Commit

Permalink
Change the auth format in the config to something valid
Browse files Browse the repository at this point in the history
  • Loading branch information
brianp committed Nov 8, 2023
1 parent 4b3715d commit bf7820d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions common/config/presets/f_merge_mining_proxy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ monerod_url = [# stagenet
#base_node_grpc_address = "/ip4/127.0.0.1/tcp/18142"

# GRPC authentication for the base node (default = "none")
#base_node_grpc_authentication = { username: "miner", password: "$argon..." }
#base_node_grpc_authentication = { username = "miner", password = "$argon..." }

# The Minotari wallet's GRPC address. (default = "/ip4/127.0.0.1/tcp/18143")
#console_wallet_grpc_address = "/ip4/127.0.0.1/tcp/18143"

# GRPC authentication for the Minotari wallet (default = "none")
#wallet_grpc_authentication = { username: "miner", password: "$argon..." }
#wallet_grpc_authentication = { username = "miner", password = "$argon..." }

# Address of the minotari_merge_mining_proxy application. (default = "/ip4/127.0.0.1/tcp/18081")
#listener_address = "/ip4/127.0.0.1/tcp/18081"
Expand Down
4 changes: 2 additions & 2 deletions common/config/presets/g_miner.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
# GRPC address of base node (default = "/ip4/127.0.0.1/tcp/18142")
#base_node_grpc_address = "/ip4/127.0.0.1/tcp/18142"
# GRPC authentication for the base node (default = "none")
#base_node_grpc_authentication = { username: "miner", password: "$argon..." }
#base_node_grpc_authentication = { username = "miner", password = "$argon..." }

# GRPC address of console wallet (default = "/ip4/127.0.0.1/tcp/18143")
#wallet_grpc_address = "/ip4/127.0.0.1/tcp/18143"
# GRPC authentication for the console wallet (default = "none")
#wallet_grpc_authentication = { username: "miner", password: "$argon..." }
#wallet_grpc_authentication = { username = "miner", password = "$argon..." }

# Number of mining threads (default: number of logical CPU cores)
#num_mining_threads = 8
Expand Down

0 comments on commit bf7820d

Please sign in to comment.