aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/environment.go
diff options
context:
space:
mode:
authorLeif Jurvetson <leijurv@gmail.com>2016-03-16 02:08:18 +0800
committerLeif Jurvetson <leijurv@gmail.com>2016-03-16 02:08:18 +0800
commitb7bb2d8589ddfb4f893c881edb6422bacdb6e53b (patch)
tree39ab548f4995eab28d26274d0d40cfd7be036915 /core/vm/environment.go
parente189fb839c688b418b43ad6533111c246c109a93 (diff)
downloaddexon-b7bb2d8589ddfb4f893c881edb6422bacdb6e53b.tar.gz
dexon-b7bb2d8589ddfb4f893c881edb6422bacdb6e53b.tar.zst
dexon-b7bb2d8589ddfb4f893c881edb6422bacdb6e53b.zip
core: various typos
Diffstat (limited to 'core/vm/environment.go')
-rw-r--r--core/vm/environment.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/vm/environment.go b/core/vm/environment.go
index a58e3ba2b..d5d21a45b 100644
--- a/core/vm/environment.go
+++ b/core/vm/environment.go
@@ -34,9 +34,9 @@ type Environment interface {
MakeSnapshot() Database
// Set database to previous snapshot
SetSnapshot(Database)
- // Address of the original invoker (first occurance of the VM invoker)
+ // Address of the original invoker (first occurrence of the VM invoker)
Origin() common.Address
- // The block number this VM is invoken on
+ // The block number this VM is invoked on
BlockNumber() *big.Int
// The n'th hash ago from this block number
GetHash(uint64) common.Hash
@@ -101,7 +101,7 @@ type Database interface {
IsDeleted(common.Address) bool
}
-// StructLog is emited to the Environment each cycle and lists information about the curent internal state
+// StructLog is emitted to the Environment each cycle and lists information about the current internal state
// prior to the execution of the statement.
type StructLog struct {
Pc uint64