mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
Fix wallet port format in grin.toml
This commit is contained in:
parent
ee678b28d0
commit
9e10943374
2 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
|
|
@ -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(),
|
||||
|
|
Loading…
Reference in a new issue