mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-14 12:06:40 +00:00
Merge pull request #15479 from guoger/patch-1
core/vm: fix typos in jump_table.go
This commit is contained in:
commit
a3128f9099
1 changed files with 2 additions and 2 deletions
|
|
@ -42,12 +42,12 @@ type operation struct {
|
||||||
// memorySize returns the memory size required for the operation
|
// memorySize returns the memory size required for the operation
|
||||||
memorySize memorySizeFunc
|
memorySize memorySizeFunc
|
||||||
|
|
||||||
halts bool // indicates whether the operation shoult halt further execution
|
halts bool // indicates whether the operation should halt further execution
|
||||||
jumps bool // indicates whether the program counter should not increment
|
jumps bool // indicates whether the program counter should not increment
|
||||||
writes bool // determines whether this a state modifying operation
|
writes bool // determines whether this a state modifying operation
|
||||||
valid bool // indication whether the retrieved operation is valid and known
|
valid bool // indication whether the retrieved operation is valid and known
|
||||||
reverts bool // determines whether the operation reverts state (implicitly halts)
|
reverts bool // determines whether the operation reverts state (implicitly halts)
|
||||||
returns bool // determines whether the opertions sets the return data content
|
returns bool // determines whether the operations sets the return data content
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue