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

second parameter in solidity contact methode crashes sepolia node #15715

Open
igorroman777 opened this issue Jan 14, 2025 · 1 comment
Open
Labels

Comments

@igorroman777
Copy link

igorroman777 commented Jan 14, 2025

solidity contract on my ethereum sepolia node deployment

Description

I would like to install a simple solidity contract on my ethereum sepolia node.
It works, but if each method has only one parameter.
With two parameters e.g. uint bla in the method I get 500 errors from the server.

Environment

  • "ethers": "6.13.5",
  • "hardhat": "2.22.17",
  • solidity 0.8.28;

Steps to Reproduce

pragma solidity 0.8.28;


contract SimpleStorage {
    uint storedData;

    function set(uint x, uint bla) public {
        storedData = x;
    }

    function get() public view returns (uint) {
        return storedData;
    }
}
@igorroman777 igorroman777 changed the title econd parameter in solidity contact methode crashes sepolia node second parameter in solidity contact methode crashes sepolia node Jan 14, 2025
@igorroman777
Copy link
Author

eth_sendRawTransaction is called with an argument.

Nothing is done with two arguments

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

No branches or pull requests

1 participant