-
-
Save robsonximenes/5b5f437636a6ea55f762913eb3112e6a to your computer and use it in GitHub Desktop.
Created using browser-solidity: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://ethereum.github.io/browser-solidity/#version=soljson-v0.4.11+commit.68ef5810.js&optimize=false&gist=
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.11; | |
contract EleicaoCipa{ | |
struct Eleitor { | |
bool jaVoltou; | |
address endereco; | |
uint voto; | |
} | |
struct Candidato { | |
bytes32 nome; | |
uint votosrecebidos; | |
} | |
mapping(address => Eleitor) public eleitores; | |
Candidato[] public candidatos; | |
address public eleitorOriginal; | |
function EleicaoCipa(bytes32[] listaDeCandidatos) { | |
eleitorOriginal = msg.sender; | |
for (uint i = 0; i < listaDeCandidatos.length; i++) { | |
candidatos.push(Candidato({ | |
nome: listaDeCandidatos[i], | |
votosrecebidos: 0 | |
})); | |
} | |
} | |
function verificarSePodeVotar(address atualEleitor) constant{ | |
require((msg.sender == eleitorOriginal) && | |
!eleitores[atualEleitor].jaVoltou); | |
} | |
function votar(uint voto) { | |
Eleitor sender = eleitores[msg.sender]; | |
require(!sender.jaVoltou); | |
sender.jaVoltou = true; | |
sender.voto = voto; | |
candidatos[voto].votosrecebidos += 1; | |
} | |
function maisVotado() constant | |
returns (uint candidatoMaisVotado){ | |
uint maiorVoto = 0; | |
for (uint p = 0; p < candidatos.length; p++) { | |
if (candidatos[p].votosrecebidos > maiorVoto) { | |
maiorVoto = candidatos[p].votosrecebidos; | |
candidatoMaisVotado = p; | |
} | |
} | |
} | |
function nomeDoMaisVotado() constant | |
returns (bytes32 vencedor){ | |
vencedor = candidatos[maisVotado()].nome; | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment