From 99f10f6120ad565ab3d68d633b25958140db8f7c Mon Sep 17 00:00:00 2001 From: Ignotus Peverell Date: Tue, 20 Mar 2018 16:54:29 +0000 Subject: [PATCH] Added wallet config, chain type to testnet2 --- grin.toml | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/grin.toml b/grin.toml index 398914a9b..d84aa20eb 100644 --- a/grin.toml +++ b/grin.toml @@ -40,7 +40,7 @@ db_root = ".grin" #Testnet1 - Testnet1 genesis block (cuckoo 16) #Testnet2 - Testnet2 genesis block (cuckoo 30) # -chain_type = "Testnet1" +chain_type = "Testnet2" #run the node in "full archive" mode (default is fast-sync, pruned node) #archive_mode = false @@ -72,6 +72,27 @@ port = 13414 #will *never* connect to peers in deny list #peers_deny = ["192.168.0.3:13414", "192.168.0.4:13414"] +######################################### +### WALLET CONFIGURATION ### +######################################### + +[wallet] + +# Whether the wallet should be open to the outside +external = false + +# Host IP for wallet listener +api_listen_interface = "127.0.0.1" + +# Port for wallet listener +api_listen_port = "13415" + +# Where the wallet should find a running node +check_node_api_http_addr = "http://localhost:13413" + +# Where to find wallet files (seed, data, etc) +data_file_dir = "." + ######################################### ### LOGGING CONFIGURATION ### ######################################### @@ -88,7 +109,7 @@ stdout_log_level = "Warning" log_to_file = true # Log level for file: Critical, Error, Warning, Info, Debug, Trace -file_log_level = "Info" +file_log_level = "Debut" # Log file path log_file_path = "grin.log"