aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorevgk <evgeniy.kamyshev@gmail.com>2017-08-04 07:31:18 +0800
committerFelix Lange <fjl@users.noreply.github.com>2017-08-04 07:31:18 +0800
commit0cc9b8791e63473c1c06609010ef51c587c82bcb (patch)
tree165d7d83a78f1e77c4d10fa379855110fa0ce69f /core
parent8b84bd283fe94a7c921fd404156e25160ac918dc (diff)
downloadgo-tangerine-0cc9b8791e63473c1c06609010ef51c587c82bcb.tar
go-tangerine-0cc9b8791e63473c1c06609010ef51c587c82bcb.tar.gz
go-tangerine-0cc9b8791e63473c1c06609010ef51c587c82bcb.tar.bz2
go-tangerine-0cc9b8791e63473c1c06609010ef51c587c82bcb.tar.lz
go-tangerine-0cc9b8791e63473c1c06609010ef51c587c82bcb.tar.xz
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.go2
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
}