Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aptos-labs/aptos-core
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 03b7a66ba46989d4fe01c1c4a61cd279873ef8ac
Choose a base ref
..
head repository: aptos-labs/aptos-core
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1bf7675c4365a5993320e713de55c18bde5d59b6
Choose a head ref
Showing with 4 additions and 0 deletions.
  1. +1 −0 .github/workflows/workflow-run-replay-verify-on-archive.yaml
  2. +3 −0 testsuite/replay-verify/main.py
Original file line number Diff line number Diff line change
@@ -113,6 +113,7 @@ jobs:
run: |
cd testsuite/replay-verify
poetry run python main.py --network ${{ inputs.NETWORK }} --cleanup
echo "Cleanup completed"
3 changes: 3 additions & 0 deletions testsuite/replay-verify/main.py
Original file line number Diff line number Diff line change
@@ -561,6 +561,9 @@ def print_logs(failed_workpod_logs, txn_mismatch_logs):
(failed_logs, txn_mismatch_logs) = scheduler.collect_all_failed_logs()
scheduler.print_stats()
print_logs(failed_logs, txn_mismatch_logs)
if txn_mismatch_logs:
logger.error("Transaction mismatch logs found.")
exit(1)

finally:
scheduler.cleanup()