0
0
mirror of https://github.com/monero-project/monero synced 2025-10-06 00:32:44 +02:00

functional_tests: fix piecemeal export in cold_signing, part 2

Do not mark output import as done if exception is thrown for output being past last imported output.
This commit is contained in:
jeffro256
2025-08-26 15:37:49 -05:00
parent 09bb3705e0
commit 57c40b8993

View File

@@ -122,6 +122,8 @@ class ColdSigningTest():
# new outputs first # new outputs first
if 'Imported outputs omit more outputs that we know of' not in str(e): if 'Imported outputs omit more outputs that we know of' not in str(e):
raise raise
else:
continue
for i in range(start, start + count): for i in range(start, start + count):
if i < len(done): if i < len(done):
done[i] = True done[i] = True