You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
210 B
14 lines
210 B
6 years ago
|
pragma solidity ^0.5.0;
|
||
7 years ago
|
|
||
|
contract Test {
|
||
|
struct Vote {
|
||
|
mapping (address => uint) voted;
|
||
|
}
|
||
|
|
||
|
Vote vote;
|
||
|
|
||
6 years ago
|
function a() public {
|
||
5 years ago
|
bool isYay = false;
|
||
7 years ago
|
vote.voted[msg.sender] = isYay ? 1 : 2;
|
||
|
}
|
||
|
}
|