Fix wallet port format in grin.toml

This commit is contained in:
Ignotus Peverell 2018-03-22 19:28:25 +00:00
parent ee678b28d0
commit 9e10943374
No known key found for this signature in database
GPG key ID: 99CD25F39F8F8211
2 changed files with 3 additions and 3 deletions

View file

@ -91,7 +91,7 @@ external = false
api_listen_interface = "127.0.0.1"
# Port for wallet listener
api_listen_port = "13415"
api_listen_port = 13415
# Where the wallet should find a running node
check_node_api_http_addr = "http://localhost:13413"

View file

@ -66,8 +66,8 @@ pub fn run_sync(
// in archival nodes (no fast sync) we just consider we have the whole
// state already
let have_txhashset = !fast_sync
|| header_head.height.saturating_sub(head.height) <= horizon;
let have_txhashset =
!fast_sync || header_head.height.saturating_sub(head.height) <= horizon;
let mut syncing = needs_syncing(
currently_syncing.as_ref(),