wallet listens by default on 13416 (#128)

wallet should default to checking against node on port 13413
This commit is contained in:
AntiochP 2017-09-21 17:12:07 -04:00 committed by Ignotus Peverell
parent 7c5b7d23e7
commit 139af79509
2 changed files with 8 additions and 9 deletions

View file

@ -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

View file

@ -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(),
}
}