extend timeout in test_did_attest_after_recovery (#13601)

https://github.com/Chia-Network/chia-blockchain/actions/runs/3185807311/jobs/5195868861#step:16:40
```python-traceback
_____________ TestDIDWallet.test_did_attest_after_recovery[False] ______________
tests/wallet/did_wallet/test_did.py:470: in test_did_attest_after_recovery
    await time_out_assert_not_none(5, full_node_api.full_node.mempool_manager.get_spendbundle, spend_bundle.name())
E   AssertionError: Timed assertion timed out
```
This commit is contained in:
Kyle Altendorf 2022-10-20 16:07:54 -04:00 committed by GitHub
parent 4d890fc53e
commit f5caa92b03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -467,7 +467,7 @@ class TestDIDWallet:
spend_bundle_list = await wallet_node.wallet_state_manager.tx_store.get_unconfirmed_for_wallet(did_wallet.id())
spend_bundle = spend_bundle_list[0].spend_bundle
await time_out_assert_not_none(5, full_node_api.full_node.mempool_manager.get_spendbundle, spend_bundle.name())
await time_out_assert_not_none(15, full_node_api.full_node.mempool_manager.get_spendbundle, spend_bundle.name())
ph2 = await wallet2.get_new_puzzlehash()
for i in range(1, num_blocks):
await full_node_api.farm_new_transaction_block(FarmNewBlockProtocol(ph2))