3
How high are the fines for validators?
Hi,
The punishment value is calculated based on the configuration parameter 40, which specifies some related values, including:
- default_flat_fine
- default_proportional_fine
- severity_flat_mult
- severity_proportional_mult
- long_flat_mult
- long_proportional_mult
If this configuration parameter is not specified, then the maximum punishment is 101 TON, otherwise it's calculated as below:
let: flat = default_flat_fine * (severity_flat_mult / 256) * (long_flat_mult / 256)
...
one year ago