From 72c820c49e231b9048b7b46ced109efc09396e8e Mon Sep 17 00:00:00 2001
From: Liang ZOU <liang.d.zou@gmail.com>
Date: Thu, 13 Sep 2018 17:48:15 +0800
Subject: [PATCH] core/vm: fix typo 'EVM EVM' ==> 'EVM' (#17654)

---
 core/vm/interface.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/vm/interface.go b/core/vm/interface.go
index 1ef91cf1d..d176f5b39 100644
--- a/core/vm/interface.go
+++ b/core/vm/interface.go
@@ -64,7 +64,7 @@ type StateDB interface {
 	ForEachStorage(common.Address, func(common.Hash, common.Hash) bool)
 }
 
-// CallContext provides a basic interface for the EVM calling conventions. The EVM EVM
+// CallContext provides a basic interface for the EVM calling conventions. The EVM
 // depends on this context being implemented for doing subcalls and initialising new EVM contracts.
 type CallContext interface {
 	// Call another contract
-- 
GitLab