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.