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
|
@ -98,7 +98,7 @@ attempt_time_per_block = 30
|
|||
|
||||
#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)
|
||||
|
||||
|
@ -106,4 +106,3 @@ burn_reward = true
|
|||
|
||||
#testing value, optional
|
||||
#slow_down_in_millis = 30
|
||||
|
||||
|
|
|
@ -94,7 +94,7 @@ impl Default for WalletConfig {
|
|||
WalletConfig {
|
||||
enable_wallet: false,
|
||||
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(),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue