0xPolygonHermez / zkevm-node

Go implementation of a node that operates the Polygon zkEVM Network
Other
531 stars 685 forks source link

default trace return wrong input for precompiled #3738

Closed tclemos closed 2 months ago

tclemos commented 2 months ago

steps to reproduce:

// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.4;

contract Sha {
    function hash() public {
        sha256("hello world");
    }
}