Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DL Increase test RPC timeout #17893

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion chia/_tests/core/data_layer/test_data_rpc.py
Expand Up @@ -160,7 +160,7 @@ async def farm_block_check_singleton(
await time_out_assert(10, check_mempool_spend_count, True, full_node_api, 1)
await full_node_api.farm_new_transaction_block(FarmNewBlockProtocol(ph))
await time_out_assert(10, check_singleton_confirmed, True, data_layer, store_id)
await full_node_api.wait_for_wallet_synced(wallet_node=wallet, timeout=10)
await full_node_api.wait_for_wallet_synced(wallet_node=wallet, timeout=20)


async def is_transaction_confirmed(api: WalletRpcApi, tx_id: bytes32) -> bool:
Expand Down