We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Network: Testnet
Testnet
The contract's log event data should be the same.
There's a mismatch in the logged event data.
zkevm: 102030 sepolia: 010203
Performing a transfer operation using the emitEvent function.
emitEvent
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract Padded { event Test0(bytes data); function emitEvent() public { bytes memory myData = hex"010203"; bytes32 eventSignature = keccak256("Test0(bytes)"); assembly { let dataPtr := add(myData, 32) let dataLength := mload(myData) log1(dataPtr, dataLength, eventSignature) } } }
The text was updated successfully, but these errors were encountered:
We are investigating it. Thanks for sharing it.
Sorry, something went wrong.
tclemos
No branches or pull requests
System information
Network:
Testnet
Expected behaviour
The contract's log event data should be the same.
Actual behaviour
There's a mismatch in the logged event data.
Steps to reproduce the behaviour
zkevm: 102030
sepolia: 010203
Performing a transfer operation using the
emitEvent
function.The text was updated successfully, but these errors were encountered: