Skip to content

Instantly share code, notes, and snippets.

@m-bo-one
Created March 27, 2021 20:25
Show Gist options
  • Save m-bo-one/6c196a1df4fee4bd3a76f4b1382b60c1 to your computer and use it in GitHub Desktop.
Save m-bo-one/6c196a1df4fee4bd3a76f4b1382b60c1 to your computer and use it in GitHub Desktop.
pragma solidity >=0.7.0 <0.8.0;
contract Test {
mapping(address => bool) private data;
function set(bool res) public payable {
data[msg.sender] = res;
}
function get() public view returns(bool) {
return data[msg.sender];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment