Skip to content
New issue

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

Problem: getting error msg when switching to Logs tab in tx logs page. #114

Open
WilliamXieCrypto opened this issue Jan 6, 2023 · 0 comments

Comments

@WilliamXieCrypto
Copy link
Contributor

WilliamXieCrypto commented Jan 6, 2023

An error message appears when switching to the Logs tab and it does not reload successfully:

image

Environment

  • Elixir & Erlang/OTP versions (elixir -version): 1.13.4/24.3.4.1
  • Operating System:
  • Blockscout Version/branch: master

Steps to reproduce

Deploy this contract and call logDoubleAnonymous method:

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract LogAnoymousContract {
    event LogDoubleAnonymous(uint256 arg0, uint256 indexed arg1) anonymous;

    function logDoubleAnonymous(
        uint256 arg0,
        uint256 arg1
    ) public {
        emit LogDoubleAnonymous(arg0, arg1);
    }
}

e.g tx: https://cronos.org/explorer/testnet3/tx/0x287bba8dae54d684b33c8210a03af067ec998db338fd37a9d542c1f5b5e6005b/logs

Expected behaviour

Logs can be loaded.

Actual behaviour

Logs cannot be loaded

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant