Skip to content
This repository has been archived by the owner on Oct 4, 2019. It is now read-only.

Release Candidate 0.18.0rc3

Pre-release
Pre-release
Compare
Choose a tag to compare
@afalaleev afalaleev released this 09 Jun 21:40
· 596 commits to master since this release
1a5c254

GOLOS•CORE

Expected release date is schedule for 20 June 2018 12:00:00 MSK

On this page:
HF•18: New calculate delegation parameters method in the release candidate RC3


The multipliers are no longer required

The method of defining the parameters which was implemented in the release candidate RC2, confused delegates. Therefore, modified RC3 release candidate for HF18 has been presented where the opinions of candidates has been taken into account.

Changes implemented in RC3:
In RC2 there were the multipliers to calculate delegation parameters. These are:

account_creation_fee  
create_account_with_golos_modifier  
create_account_delegation_ratio  
min_delegation_multiplier  

This method based on multipliers implementation allowed to make the system to be flexible, but a bit confusing. Therefore, it was decided to simplify the method of calculating the parameters. Absolute values are now used instead. These are:

account_creation_fee  
create_account_min_golos_fee  
create_account_min_delegation  
min_delegation  

To create an account without delegation just one parameter account_creation_fee is needed.
To create an account with delegation there are 2 new parameters that replace multipliers. The first one is create_account_min_golos_fee using to calculate a minimal fee value to be payed in GOLOS when is creating an account with delegation.
The second one is create_account_min_delegation using to calculate a minimal GP delegation amount when is creating an account with delegation. This value can be reduced if fee is greater than create_account_min_golos_fee.
The latest parameter min_delegation replased the third multiplier and used as absolute value. That is this parameter is set by delegates voting.
One more parameter create_account_delegation_time changed measure value from mks to sec. Too much measurement accuracy is not needed.