diff options
author | evgk <evgeniy.kamyshev@gmail.com> | 2017-08-04 07:31:18 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2017-08-04 07:31:18 +0800 |
commit | 0cc9b8791e63473c1c06609010ef51c587c82bcb (patch) | |
tree | 165d7d83a78f1e77c4d10fa379855110fa0ce69f /core | |
parent | 8b84bd283fe94a7c921fd404156e25160ac918dc (diff) | |
download | go-tangerine-0cc9b8791e63473c1c06609010ef51c587c82bcb.tar.gz go-tangerine-0cc9b8791e63473c1c06609010ef51c587c82bcb.tar.zst go-tangerine-0cc9b8791e63473c1c06609010ef51c587c82bcb.zip |
core/vm: fix typo in comment (#14894)
Diffstat (limited to 'core')
-rw-r--r-- | core/vm/interpreter.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/interpreter.go b/core/vm/interpreter.go index 0a225bca4..3faa98704 100644 --- a/core/vm/interpreter.go +++ b/core/vm/interpreter.go @@ -44,7 +44,7 @@ type Config struct { // Enable recording of SHA3/keccak preimages EnablePreimageRecording bool // JumpTable contains the EVM instruction table. This - // may me left uninitialised and will be set the default + // may be left uninitialised and will be set to the default // table. JumpTable [256]operation } |