-
Notifications
You must be signed in to change notification settings - Fork 1
/
16_ToothFairy.sol
85 lines (72 loc) · 2.03 KB
/
16_ToothFairy.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/**
*
* Tooth Fairy
*
* El hada de los dientes es el equivalente de nuestro ratoncito Pérez. En este ejemplo
* tendremos tres roles: un padre, una madre y un hijo. El hijo puede informar de que el
* diente se le ha caido, la madre tiene que confirmar que es cierto y finalmente el
* padre (el hada :-)) le transferirá el regalo al hijo.
*
* Como novedad usaremos un nuevo tipo de dato llamado enum, que nos servirá para controlar
* el estado del diente.
*
**/
pragma solidity ^0.4.0;
contract ToothFairy {
address child;
address mother;
address toothFairy;
bool toothPaid = false;
enum ToothState{Mouth, WaitingFallenAproval, Fallen}
ToothState public toothState = ToothState.Mouth;
function ToothFairy(address _child, address _mother) payable {
child = _child;
mother = _mother;
toothFairy = msg.sender;
}
modifier onlyChild {
if(msg.sender != child) {
revert();
} else {
_;
}
}
modifier onlyFairy {
if(msg.sender != toothFairy) {
revert();
} else {
_;
}
}
modifier onlyMother {
if(msg.sender != mother) {
revert();
} else {
_;
}
}
function toothFall() onlyChild {
if (toothState == ToothState.Mouth) {
toothState = ToothState.WaitingFallenAproval;
} else {
revert();
}
}
function motherAproves() onlyMother {
if (toothState == ToothState.WaitingFallenAproval) {
payToChild();
toothState = ToothState.Fallen;
}
}
function payToChild() {
if (toothState == ToothState.WaitingFallenAproval && toothPaid == false) {
child.transfer(this.balance);
toothPaid = true;
} else {
revert();
}
}
function kill() {
selfdestruct(toothFairy);
}
}