Skip to content

Commit

Permalink
Merge pull request #1308 from mkoura/fix_wrong_variable
Browse files Browse the repository at this point in the history
Fix wrong variable used for length calculation
  • Loading branch information
mkoura committed Aug 6, 2022
2 parents 25bbb66 + 3f88554 commit fa158f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cardano_node_tests/utils/dbsync_utils.py
Expand Up @@ -772,7 +772,7 @@ def check_tx(
)
db_withdrawals = sorted(response.withdrawals)
len_tx_withdrawals = len(tx_withdrawals)
len_db_withdrawals = len(db_mint_txouts)
len_db_withdrawals = len(db_withdrawals)

assert (
len_db_withdrawals == len_tx_withdrawals
Expand Down

0 comments on commit fa158f5

Please sign in to comment.