fix: skip a patch that could fork the chain (#1902)

This commit is contained in:
lx 2023-10-07 16:02:33 +08:00 committed by GitHub
parent 6932673003
commit 0d47213199
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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.