Writing to contract not working.... #1874
Unanswered
ashishsurya
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
useContactWrite gives me an error always saying
Code Used
Another Question????
is that the right way to pass args for a smart contract like this
contract Storage { bytes32 x; /** * @dev Store value in variable * @param num value to store */ function store(bytes32 num) public { x = num; } function getBytes32() public view returns (bytes32) { return x; } }Beta Was this translation helpful? Give feedback.
All reactions