Added wallet config, chain type to testnet2

This commit is contained in:
Ignotus Peverell 2018-03-20 16:54:29 +00:00
parent 313fe1541d
commit 99f10f6120
No known key found for this signature in database
GPG key ID: 99CD25F39F8F8211

View file

@ -40,7 +40,7 @@ db_root = ".grin"
#Testnet1 - Testnet1 genesis block (cuckoo 16) #Testnet1 - Testnet1 genesis block (cuckoo 16)
#Testnet2 - Testnet2 genesis block (cuckoo 30) #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) #run the node in "full archive" mode (default is fast-sync, pruned node)
#archive_mode = false #archive_mode = false
@ -72,6 +72,27 @@ port = 13414
#will *never* connect to peers in deny list #will *never* connect to peers in deny list
#peers_deny = ["192.168.0.3:13414", "192.168.0.4:13414"] #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 ### ### LOGGING CONFIGURATION ###
######################################### #########################################
@ -88,7 +109,7 @@ stdout_log_level = "Warning"
log_to_file = true log_to_file = true
# Log level for file: Critical, Error, Warning, Info, Debug, Trace # Log level for file: Critical, Error, Warning, Info, Debug, Trace
file_log_level = "Info" file_log_level = "Debut"
# Log file path # Log file path
log_file_path = "grin.log" log_file_path = "grin.log"