mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 15:16:43 +00:00
fix lint
This commit is contained in:
parent
cee2c221b2
commit
bee537ab98
1 changed files with 10 additions and 10 deletions
|
|
@ -294,16 +294,16 @@ func opBlobHash(pc *uint64, interpreter *EVMInterpreter, scope *ScopeContext) ([
|
|||
return nil, nil
|
||||
}
|
||||
|
||||
// enable4844 applies EIP-4844 (DATAHASH opcode)
|
||||
func enable4844(jt *JumpTable) {
|
||||
// New opcode
|
||||
jt[BLOBHASH] = &operation{
|
||||
execute: opBlobHash,
|
||||
constantGas: GasFastestStep,
|
||||
minStack: minStack(1, 1),
|
||||
maxStack: maxStack(1, 1),
|
||||
}
|
||||
}
|
||||
// // enable4844 applies EIP-4844 (DATAHASH opcode)
|
||||
// func enable4844(jt *JumpTable) {
|
||||
// // New opcode
|
||||
// jt[BLOBHASH] = &operation{
|
||||
// execute: opBlobHash,
|
||||
// constantGas: GasFastestStep,
|
||||
// minStack: minStack(1, 1),
|
||||
// maxStack: maxStack(1, 1),
|
||||
// }
|
||||
// }
|
||||
|
||||
// enable6780 applies EIP-6780 (deactivate SELFDESTRUCT)
|
||||
func enable6780(jt *JumpTable) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue