mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01:09 +03:00
wallet listens by default on 13416 (#128)
wallet should default to checking against node on port 13413
This commit is contained in:
parent
7c5b7d23e7
commit
139af79509
2 changed files with 8 additions and 9 deletions
15
grin.toml
15
grin.toml
|
@ -40,16 +40,16 @@ mining_parameter_mode = "UserTesting"
|
||||||
#internally to make it more configurable
|
#internally to make it more configurable
|
||||||
|
|
||||||
capabilities = [7]
|
capabilities = [7]
|
||||||
|
|
||||||
#The P2P server details (i.e. the server that communicates with other
|
#The P2P server details (i.e. the server that communicates with other
|
||||||
#grin server nodes
|
#grin server nodes
|
||||||
|
|
||||||
[server.p2p_config]
|
[server.p2p_config]
|
||||||
host = "127.0.0.1"
|
host = "127.0.0.1"
|
||||||
port = 13414
|
port = 13414
|
||||||
|
|
||||||
#Mining details. This section is optional. If it's not here, the server
|
#Mining details. This section is optional. If it's not here, the server
|
||||||
#will default to not mining.
|
#will default to not mining.
|
||||||
[mining]
|
[mining]
|
||||||
|
|
||||||
#flag whether mining is enabled
|
#flag whether mining is enabled
|
||||||
|
@ -75,7 +75,7 @@ cuckoo_miner_async_mode = false
|
||||||
#cuckoo_miner_plugin_dir = "target/debug/plugins"
|
#cuckoo_miner_plugin_dir = "target/debug/plugins"
|
||||||
|
|
||||||
#if using cuckoo_miner, the implementation to use.. currently
|
#if using cuckoo_miner, the implementation to use.. currently
|
||||||
#just filters for this word in the filenames in the plugin
|
#just filters for this word in the filenames in the plugin
|
||||||
#directory
|
#directory
|
||||||
#Plugins currently included are:
|
#Plugins currently included are:
|
||||||
#"simple" : the basic cuckoo algorithm
|
#"simple" : the basic cuckoo algorithm
|
||||||
|
@ -83,7 +83,7 @@ cuckoo_miner_async_mode = false
|
||||||
#"matrix" : fastest available CPU miner, with largest memory footprint
|
#"matrix" : fastest available CPU miner, with largest memory footprint
|
||||||
#"tomato" : Time memory-tradeoff... low memory but very slow
|
#"tomato" : Time memory-tradeoff... low memory but very slow
|
||||||
#Not included but verified working:
|
#Not included but verified working:
|
||||||
#"cuda" a gpu miner - which currently needs to bebuilt and installed
|
#"cuda" a gpu miner - which currently needs to bebuilt and installed
|
||||||
#separately from#the cuckoo-miner repository. Instructions found there
|
#separately from#the cuckoo-miner repository. Instructions found there
|
||||||
|
|
||||||
cuckoo_miner_plugin_type = "simple"
|
cuckoo_miner_plugin_type = "simple"
|
||||||
|
@ -98,7 +98,7 @@ attempt_time_per_block = 30
|
||||||
|
|
||||||
#the wallet reciever to which coinbase rewards will be sent
|
#the wallet reciever to which coinbase rewards will be sent
|
||||||
|
|
||||||
wallet_receiver_url = "http://127.0.0.1:13415"
|
wallet_receiver_url = "http://127.0.0.1:13416"
|
||||||
|
|
||||||
#whether to ignore the reward (mostly for testing)
|
#whether to ignore the reward (mostly for testing)
|
||||||
|
|
||||||
|
@ -106,4 +106,3 @@ burn_reward = true
|
||||||
|
|
||||||
#testing value, optional
|
#testing value, optional
|
||||||
#slow_down_in_millis = 30
|
#slow_down_in_millis = 30
|
||||||
|
|
||||||
|
|
|
@ -94,7 +94,7 @@ impl Default for WalletConfig {
|
||||||
WalletConfig {
|
WalletConfig {
|
||||||
enable_wallet: false,
|
enable_wallet: false,
|
||||||
api_http_addr: "127.0.0.1:13416".to_string(),
|
api_http_addr: "127.0.0.1:13416".to_string(),
|
||||||
check_node_api_http_addr: "http://127.0.0.1:13415".to_string(),
|
check_node_api_http_addr: "http://127.0.0.1:13413".to_string(),
|
||||||
data_file_dir: ".".to_string(),
|
data_file_dir: ".".to_string(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue