Skip to content

Commit 427cf20

Browse files
authored
Revert "core/vm: minor code formatting (ethereum#28199)"
This reverts commit d0a8681.
1 parent 979d8b9 commit 427cf20

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

core/vm/instructions.go

-2
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,6 @@ func opKeccak256(pc *uint64, interpreter *EVMInterpreter, scope *ScopeContext) (
251251
size.SetBytes(interpreter.hasherBuf[:])
252252
return nil, nil
253253
}
254-
255254
func opAddress(pc *uint64, interpreter *EVMInterpreter, scope *ScopeContext) ([]byte, error) {
256255
scope.Stack.push(new(uint256.Int).SetBytes(scope.Contract.Address().Bytes()))
257256
return nil, nil
@@ -268,7 +267,6 @@ func opOrigin(pc *uint64, interpreter *EVMInterpreter, scope *ScopeContext) ([]b
268267
scope.Stack.push(new(uint256.Int).SetBytes(interpreter.evm.Origin.Bytes()))
269268
return nil, nil
270269
}
271-
272270
func opCaller(pc *uint64, interpreter *EVMInterpreter, scope *ScopeContext) ([]byte, error) {
273271
scope.Stack.push(new(uint256.Int).SetBytes(scope.Contract.Caller().Bytes()))
274272
return nil, nil

0 commit comments

Comments
 (0)