Source file delegate_cycles.ml
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
let update_activity ctxt last_cycle =
let preserved = Constants_storage.preserved_cycles ctxt in
match Cycle_repr.sub last_cycle preserved with
| None -> return (ctxt, [])
| Some _unfrozen_cycle ->
Stake_storage.fold_on_active_delegates_with_minimal_stake
ctxt
~order:`Sorted
~init:(Ok (ctxt, []))
~f:(fun delegate () acc ->
acc >>?= fun (ctxt, deactivated) ->
Delegate_activation_storage.last_cycle_before_deactivation
ctxt
delegate
>>=? fun cycle ->
if Cycle_repr.(cycle <= last_cycle) then
Stake_storage.set_inactive ctxt delegate >>= fun ctxt ->
return (ctxt, delegate :: deactivated)
else return (ctxt, deactivated))
>|=? fun (ctxt, deactivated) -> (ctxt, deactivated)
let update_initial_frozen_deposits ctxt ~new_cycle =
Delegate_storage.reset_forbidden_delegates ctxt >>= fun ctxt ->
(match Cycle_repr.pred new_cycle with
| None -> return Signature.Public_key_hash.Set.empty
| Some last_cycle -> (
Stake_storage.find_selected_distribution ctxt last_cycle
>|=? fun last_cycle_distribution ->
match last_cycle_distribution with
| None -> Signature.Public_key_hash.Set.empty
| Some distribution ->
List.fold_left
(fun delegates (d, _) ->
Signature.Public_key_hash.Set.add d delegates)
Signature.Public_key_hash.Set.empty
distribution))
>>=? fun last_cycle_delegates ->
Stake_storage.get_selected_distribution ctxt new_cycle
>>=? fun selection_for_new_cycle ->
List.fold_left_es
(fun (ctxt, delegates_to_remove)
(delegate, Stake_repr.{frozen; delegated = _}) ->
let delegates_to_remove =
Signature.Public_key_hash.Set.remove delegate delegates_to_remove
in
let delegate_contract = Contract_repr.Implicit delegate in
Frozen_deposits_storage.update_initial_amount
ctxt
delegate_contract
frozen
>>=? fun ctxt ->
Frozen_deposits_storage.get ctxt delegate_contract >>=? fun deposits ->
let current_amount = deposits.current_amount in
if Tez_repr.(current_amount = zero) then
Delegate_storage.forbid_delegate ctxt delegate >>= fun ctxt ->
return (ctxt, delegates_to_remove)
else return (ctxt, delegates_to_remove))
(ctxt, last_cycle_delegates)
selection_for_new_cycle
>>=? fun (ctxt, delegates_to_remove) ->
Signature.Public_key_hash.Set.fold_es
(fun delegate ctxt ->
let delegate_contract = Contract_repr.Implicit delegate in
Frozen_deposits_storage.update_initial_amount
ctxt
delegate_contract
Tez_repr.zero)
delegates_to_remove
ctxt
let delegate_has_revealed_nonces delegate unrevelead_nonces_set =
not (Signature.Public_key_hash.Set.mem delegate unrevelead_nonces_set)
let distribute_attesting_rewards ctxt last_cycle unrevealed_nonces =
let attesting_reward_per_slot =
Delegate_rewards.attesting_reward_per_slot ctxt
in
let unrevealed_nonces_set =
List.fold_left
(fun set {Storage.Seed.nonce_hash = _; delegate} ->
Signature.Public_key_hash.Set.add delegate set)
Signature.Public_key_hash.Set.empty
unrevealed_nonces
in
Stake_storage.get_total_active_stake ctxt last_cycle
>>=? fun total_active_stake ->
let total_active_stake_weight =
Stake_context.staking_weight ctxt total_active_stake
in
Stake_storage.get_selected_distribution ctxt last_cycle >>=? fun delegates ->
List.fold_left_es
(fun (ctxt, balance_updates) (delegate, active_stake) ->
Delegate_missed_attestations_storage
.check_and_reset_delegate_participation
ctxt
delegate
>>=? fun (ctxt, sufficient_participation) ->
let has_revealed_nonces =
delegate_has_revealed_nonces delegate unrevealed_nonces_set
in
let active_stake_weight =
Stake_context.staking_weight ctxt active_stake
in
let expected_slots =
Delegate_missed_attestations_storage
.expected_slots_for_given_active_stake
ctxt
~total_active_stake_weight
~active_stake_weight
in
let rewards = Tez_repr.mul_exn attesting_reward_per_slot expected_slots in
if sufficient_participation && has_revealed_nonces then
Delegate_staking_parameters.pay_rewards
ctxt
~active_stake
~source:`Attesting_rewards
~delegate
rewards
>|=? fun (ctxt, payed_rewards_receipts) ->
(ctxt, payed_rewards_receipts @ balance_updates)
else
Token.transfer
ctxt
`Attesting_rewards
(`Lost_attesting_rewards
(delegate, not sufficient_participation, not has_revealed_nonces))
rewards
>|=? fun (ctxt, payed_rewards_receipts) ->
(ctxt, payed_rewards_receipts @ balance_updates))
(ctxt, [])
delegates
let cycle_end ctxt last_cycle =
Seed_storage.cycle_end ctxt last_cycle >>=? fun (ctxt, unrevealed_nonces) ->
let new_cycle = Cycle_repr.add last_cycle 1 in
Delegate_sampler.select_new_distribution_at_cycle_end ctxt ~new_cycle
>>=? fun ctxt ->
Delegate_consensus_key.activate ctxt ~new_cycle >>= fun ctxt ->
Delegate_slashed_deposits_storage.clear_outdated_slashed_deposits
ctxt
~new_cycle
>>= fun ctxt ->
distribute_attesting_rewards ctxt last_cycle unrevealed_nonces
>>=? fun (ctxt, balance_updates) ->
update_initial_frozen_deposits ctxt ~new_cycle >>=? fun ctxt ->
Stake_storage.clear_at_cycle_end ctxt ~new_cycle >>=? fun ctxt ->
Delegate_sampler.clear_outdated_sampling_data ctxt ~new_cycle >>=? fun ctxt ->
Delegate_staking_parameters.activate ctxt ~new_cycle >>= fun ctxt ->
update_activity ctxt last_cycle >>=? fun (ctxt, deactivated_delegates) ->
Adaptive_issuance_storage.update_stored_rewards_at_cycle_end ctxt ~new_cycle
>>=? fun ctxt -> return (ctxt, balance_updates, deactivated_delegates)
let init_first_cycles ctxt =
let preserved = Constants_storage.preserved_cycles ctxt in
List.fold_left_es
(fun ctxt c ->
let cycle = Cycle_repr.of_int32_exn (Int32.of_int c) in
Stake_storage.snapshot ctxt >>=? fun ctxt ->
Delegate_sampler.select_distribution_for_cycle ctxt cycle)
ctxt
Misc.(0 --> preserved)
>>=? fun ctxt ->
let cycle = (Raw_context.current_level ctxt).cycle in
update_initial_frozen_deposits ~new_cycle:cycle ctxt