From bb39fecbaab7215fa126c9aa1421b181a49c2ca0 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Wed, 7 Aug 2019 11:44:29 +0200 Subject: [PATCH] core/vm: word formatting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Péter Szilágyi --- core/vm/interpreter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/interpreter.go b/core/vm/interpreter.go index 4a902dce52..be6e00a6e6 100644 --- a/core/vm/interpreter.go +++ b/core/vm/interpreter.go @@ -110,7 +110,7 @@ func NewEVMInterpreter(evm *EVM, cfg Config) *EVMInterpreter { if err := EnableEIP(eip, &jt); err != nil { // Disable it, so caller can check if it's activated or not cfg.ExtraEips = append(cfg.ExtraEips[:i], cfg.ExtraEips[i+1:]...) - log.Error("eip activation failed", "eip", eip, "error", err) + log.Error("EIP activation failed", "eip", eip, "error", err) } } cfg.JumpTable = jt