Skip to content

Commit 92690f6

Browse files
authored
Merge pull request #1580 from lithp/lithp/reverse-diff-sign
Emit better balance diffs when comparing accounts
2 parents 5055f5b + 576a824 commit 92690f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eth/tools/fixtures/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def verify_account_db(expected_state: AccountState, account_db: BaseAccountDB) -
7878
'balance',
7979
actual_value,
8080
expected_value,
81-
expected_value - actual_value,
81+
actual_value - expected_value,
8282
)
8383
)
8484
else:

0 commit comments

Comments
 (0)