-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdemo.sol
105 lines (67 loc) · 1.39 KB
/
demo.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
contract mortal{
address public owner;
function mortal(){
owner = msg.sender;
}
modifier onlyOwner{
if (msg.sender != owner){
throw;
}else{
_
}
}
function kill() onlyOwner{
suicide(owner);
}
}
contract User is mortal{
string public userName;
mapping(address=>Service) public services;
struct Service{
bool active;
uint lastUpdate;
uint256 debt;
}
function User(string _name){
userName = _name;
}
function registerToProvider(address _providerAddress) onlyOwner {
services[_providerAddress] = Service({
active: true,
lastUpdate: now,
debt: 0
});
}
function setDebt(uint256 _debt){
if(services[msg.sender].active){
services[msg.sender].lastUpdate = now;
services[msg.sender].debt = _debt;
}else{
throw;
}
}
function payToProvider(address _providerAddress){
_providerAddress.send(services[_providerAddress].debt);
}
function unsubscribe(address _providerAddress){
if(services[_providerAddress].debt == 0){
services[_providerAddress].active = false;
}else{
throw;
}
}
}
contract Provider is mortal{
string public providerName;
string public description;
function Provider(
string _name,
string _description){
providerName = _name;
description = _description;
}
function setDebt(uint256 _debt, address _userAddress){
User person = User(_userAddress);
person.setDebt(_debt);
}
}