Merge pull request #736 from hackrush01/hackrush

Increased max_key_fee
This commit is contained in:
Jack Robison 2017-06-27 13:25:15 -04:00 committed by GitHub
commit d9acb7fdab
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