From e8c7c11c631cb3b25daa5a2f3ee59455f6f15ef1 Mon Sep 17 00:00:00 2001 From: "larry.lx" Date: Thu, 28 Sep 2023 19:52:09 +0800 Subject: [PATCH] fix: skip a patch that could fork the chain --- core/vm/contracts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/contracts.go b/core/vm/contracts.go index 482c020a67..abc22e1f0d 100644 --- a/core/vm/contracts.go +++ b/core/vm/contracts.go @@ -409,7 +409,7 @@ func (c *dataCopy) RequiredGas(input []byte) uint64 { } func (c *dataCopy) Run(in []byte) ([]byte, error) { - return common.CopyBytes(in), nil + return in, nil } // bigModExp implements a native big integer exponential modular operation.