Skip to content

Commit

Permalink
fix: limit amount of attempts for test test_withdrawal_fork
Browse files Browse the repository at this point in the history
  • Loading branch information
knst committed Oct 17, 2024
1 parent ecd0a96 commit d690309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/feature_asset_locks.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ def test_withdrawal_fork(self, node_wallet, pubkey):
assert softfork_active(node_wallet, 'withdrawals')

index = 501
while True:
while index < 511:
self.log.info(f"Generating new Asset Unlock tx, index={index}...")
asset_unlock_tx = self.create_assetunlock(index, COIN, pubkey)
asset_unlock_tx_payload = CAssetUnlockTx()
Expand Down

0 comments on commit d690309

Please sign in to comment.