mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-09 15:37:54 -05:00
Update EXTCALL creation detection (#8038)
Update the EXTCALL account creation detection to match legacy call detection. Signed-off-by: Danno Ferrin <danno@numisight.com>
This commit is contained in:
@@ -136,7 +136,7 @@ public abstract class AbstractExtCallOperation extends AbstractCallOperation {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean accountCreation = contract == null && !zeroValue;
|
boolean accountCreation = (contract == null || contract.isEmpty()) && !zeroValue;
|
||||||
long cost =
|
long cost =
|
||||||
clampedAdd(
|
clampedAdd(
|
||||||
clampedAdd(
|
clampedAdd(
|
||||||
|
|||||||
Reference in New Issue
Block a user