Skip to content

Commit 94411f7

Browse files
committed
spotless
Signed-off-by: daniellehrner <daniel.lehrner@consensys.net>
1 parent 97b1289 commit 94411f7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

evm/src/main/java/org/hyperledger/besu/evm/operation/SStoreOperation.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ public OperationResult execute(final MessageFrame frame, final EVM evm) {
101101
Suppliers.memoize(() -> account.getOriginalStorageValue(key));
102102

103103
final long cost =
104-
gasCalculator().calculateStorageCost(newValue, currentValueSupplier, originalValueSupplier) + sloadCost;
104+
gasCalculator().calculateStorageCost(newValue, currentValueSupplier, originalValueSupplier)
105+
+ sloadCost;
105106
if (remainingGas < cost) {
106107
return new OperationResult(cost, ExceptionalHaltReason.INSUFFICIENT_GAS);
107108
}

0 commit comments

Comments
 (0)