0xPolygonHermez / zkevm-node

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

default trace return wrong input for precompiled #3738

Closed tclemos closed 4 months ago

tclemos commented 4 months ago

steps to reproduce:

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

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