chia 2.0.0 full-node syncing ,wallet syncing is true ,but wallet synced is false #16350
Replies: 2 comments
-
Hey @coinbase-op , when in farming mode the full node will need to be fully synced prior to the wallet being synced. Also for future reference, we can generally provide more thorough and immediate support on our discord server: |
Beta Was this translation helpful? Give feedback.
-
If you are still experiencing the issues it is recommended to upgrade to the latest version of chia. Please download it from here: https://www.chia.net/downloads/ Since this issue has been open for a number of years without additional comments, we will be closing this ticket but if we have closed this ticket in error do not hesitate to reach out to us again with any followup questions, comments, or if the issue persists after an update.
The best place to reach our support team is on Discord (https://discord.gg/chia) or by reopening this ticket. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
The block has been synchronized, the wallet has been displayed as being synchronized。
(venv) root@ec0e5c7119be:~/.chia/mainnet/log#
chia rpc wallet get_sync_status; chia rpc wallet get_height_info; chia rpc wallet get_network_info; chia rpc wallet get_sync_status
{
"genesis_initialized": true,
"success": true,
"synced": false,
"syncing": true
}
{
"height": 0,
"success": true
}
{
"network_name": "mainnet",
"network_prefix": "xch",
"success": true
}
{
"genesis_initialized": true,
"success": true,
"synced": false,
"syncing": true
}
the log is reported:
(venv) root@ec0e5c7119be:~/.chia/mainnet/log# tail -f debug.log
chia.wallet.util.wallet_sync_utils.PeerRequestException: Error fetching timestamp from all peers
2023-09-16T05:43:18.210 wallet chia.wallet.wallet_state_manager: ERROR Failed to add coin_state: CoinState { coin: Coin { parent_coin_info: 186e70c530727d5bef616761b5ad0000d643cbf81d8f39e5ae30b39cc9c0b61c, puzzle_hash: 08a448e8fdeb3a8531e534271c48789590f84733420d1ab5b56f7946a7e555e1, amount: 100000000000 }, spent_height: Some(3693633), created_height: Some(3608549) }, error: Error fetching timestamp from all peers
Traceback (most recent call last):
File "/root/chia-blockchain/chia/wallet/wallet_state_manager.py", line 1390, in _add_coin_states
created_timestamp = await self.wallet_node.get_timestamp_for_height(
File "/root/chia-blockchain/chia/wallet/wallet_node.py", line 1043, in get_timestamp_for_height
raise PeerRequestException("Error fetching timestamp from all peers")
chia.wallet.util.wallet_sync_utils.PeerRequestException: Error fetching timestamp from all peers
2023-09-16T05:43:18.216 wallet chia.wallet.wallet_node : WARNING Peer None did not respond in time.
2023-09-16T05:43:18.217 wallet wallet_server : WARNING Banning 110.168.13.11 for 120 seconds
2023-09-16T05:43:24.188 wallet chia.wallet.wallet_state_manager: ERROR Failed to add coin_state: CoinState { coin: Coin { parent_coin_info: 26936e7bae4f10be4b022554a8e3204e40d96b650080243540a2351d4fdd48b7, puzzle_hash: 4ce6d4e585922fcc02ac4be67c763060fc8f853faeee5c1fb4404b0aa7491935, amount: 157450256390 }, spent_height: Some(3730196), created_height: Some(3716309) }, error: Was not able to obtain children None
Traceback (most recent call last):
File "/root/chia-blockchain/chia/wallet/wallet_state_manager.py", line 1353, in _add_coin_states
children = await self.wallet_node.fetch_children(coin_name, peer=peer, fork_height=fork_height)
File "/root/chia-blockchain/chia/wallet/wallet_node.py", line 1622, in fetch_children
raise PeerRequestException(f"Was not able to obtain children {response}")
chia.wallet.util.wallet_sync_utils.PeerRequestException: Was not able to obtain children None
2023-09-16T05:43:27.197 wallet chia.wallet.wallet_state_manager: ERROR Failed to add coin_state: CoinState { coin: Coin { parent_coin_info: 70a3fea24fcc886a9be62cfe08d0ddab0df5e2fcebb5a21ff06cbdb20e0a907e, puzzle_hash: 4ce6d4e585922fcc02ac4be67c763060fc8f853faeee5c1fb4404b0aa7491935, amount: 313973125000 }, spent_height: Some(3732962), created_height: Some(3728178) }, error: Was not able to obtain children None
Traceback (most recent call last):
File "/root/chia-blockchain/chia/wallet/wallet_state_manager.py", line 1353, in _add_coin_states
children = await self.wallet_node.fetch_children(coin_name, peer=peer, fork_height=fork_height)
File "/root/chia-blockchain/chia/wallet/wallet_node.py", line 1622, in fetch_children
raise PeerRequestException(f"Was not able to obtain children {response}")
Beta Was this translation helpful? Give feedback.
All reactions