Increased max_key_fee

The default max_key_fee value is increased to US$ 50.
Fixes #721
This commit is contained in:
hackrush 2017-06-27 21:30:48 +05:30
parent aef31991f9
commit 9743162cda
2 changed files with 2 additions and 1 deletions

View file

@ -24,6 +24,7 @@ at anytime.
* Fix shutdown of the blob tracker by Session
* Fixed claim_new_support docstrings
* Fixed BlobManager causing functional tests to fail, removed its unneeded manage() loop
* Increased max_key_fee
### Deprecated
*

View file

@ -167,7 +167,7 @@ ADJUSTABLE_SETTINGS = {
'max_connections_per_stream': (int, 5),
# TODO: writing json on the cmd line is a pain, come up with a nicer
# parser for this data structure. maybe 'USD:25'
'max_key_fee': (json.loads, {'currency': 'USD', 'amount': 25.0}),
'max_key_fee': (json.loads, {'currency': 'USD', 'amount': 50.0}),
'min_info_rate': (float, .02), # points/1000 infos
'min_valuable_hash_rate': (float, .05), # points/1000 infos
'min_valuable_info_rate': (float, .05), # points/1000 infos