You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/parallelization/TransactionCollisionDetector.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -36,10 +36,10 @@ public class TransactionCollisionDetector {
36
36
*
37
37
* <p>This method detects conflicts between the transaction and the block's state by checking if
38
38
* the transaction modifies the same addresses and storage slots that are already modified by the
39
-
* block. A conflict occurs in two cases: - If the transaction touches an address that is also
39
+
* block. A conflict occurs in two cases: 1. If the transaction touches an address that is also
40
40
* modified in the block, and the account details (excluding storage) are identical. In this case,
41
41
* it checks if there is an overlap in the storage slots affected by both the transaction and the
42
-
* block. - If the account details differ between the transaction and the block (excluding
42
+
* block. 2. If the account details differ between the transaction and the block (excluding
43
43
* storage), it immediately detects a conflict.
44
44
*
45
45
* <p>The method returns `true` if any such conflict is found, otherwise `false`.
0 commit comments