-
Notifications
You must be signed in to change notification settings - Fork 6
/
GuardaLoteria_arrays.sol
51 lines (41 loc) · 1.3 KB
/
GuardaLoteria_arrays.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
pragma solidity ^0.4.0;
contract GuardaLoteria {
address dono;
uint numeroSorteado;
uint contadorDeSorteios = 0;
uint[] numerosSorteados;
constructor(uint numeroInicial) public payable comCustoMinimo(1000) {
require (msg.sender.balance > 99.99999999999 ether);
dono = msg.sender;
set(numeroInicial);
}
event TrocoEnviado(address pagador, uint troco);
function set(uint enviado) public payable comCustoMinimo(1000) {
numeroSorteado = enviado;
contadorDeSorteios++;
numerosSorteados.push(enviado);
if (msg.value > 1000){
uint troco = msg.value - 1000;
msg.sender.transfer(troco);
emit TrocoEnviado(msg.sender, troco);
}
}
modifier comCustoMinimo(uint min) {
require(msg.value >= min, "Nao foi enviado Ether suficiente.");
_;
}
function get() public view returns (
address _donoDoContrato,
uint _ultimoNumeroSorteado,
uint _contadorDeSorteios,
uint _saldoEmWei,
uint[] _todosNumerosSorteados
) {
uint ultimo = numerosSorteados[contadorDeSorteios-1];
return (dono, ultimo, contadorDeSorteios, address(this).balance, numerosSorteados);
}
function kill () public {
require (msg.sender == dono);
selfdestruct(dono);
}
}