diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-05-25 22:21:20 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-05-25 22:22:45 +0800 |
commit | c98bce709c392f3b469f956b5f66f095a30a7e2b (patch) | |
tree | 6abc554b343b8f68e76b7303e652f22f89e47d5e /core/vm | |
parent | 17f0b1194232ebebc4e14f905e6e1d2d148aa5b6 (diff) | |
download | dexon-c98bce709c392f3b469f956b5f66f095a30a7e2b.tar.gz dexon-c98bce709c392f3b469f956b5f66f095a30a7e2b.tar.zst dexon-c98bce709c392f3b469f956b5f66f095a30a7e2b.zip |
core: fix minor accidental typos and comment errors
Diffstat (limited to 'core/vm')
-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 17edc9e33..545f7d650 100644 --- a/core/vm/interpreter.go +++ b/core/vm/interpreter.go @@ -91,7 +91,7 @@ func (in *Interpreter) enforceRestrictions(op OpCode, operation operation, stack } // Run loops and evaluates the contract's code with the given input data and returns -// the return byte-slice and an error if one occured. +// the return byte-slice and an error if one occurred. // // It's important to note that any errors returned by the interpreter should be // considered a revert-and-consume-all-gas operation. No error specific checks |