forked from LBRYCommunity/lbry-sdk
lower the minimum rate
This commit is contained in:
parent
2bfbb824bf
commit
97976cbee9
1 changed files with 4 additions and 4 deletions
|
@ -13,10 +13,10 @@ MAX_RESPONSE_INFO_SIZE = 2**16
|
||||||
MAX_BLOB_INFOS_TO_REQUEST = 20
|
MAX_BLOB_INFOS_TO_REQUEST = 20
|
||||||
BLOBFILES_DIR = ".blobfiles"
|
BLOBFILES_DIR = ".blobfiles"
|
||||||
BLOB_SIZE = 2**21
|
BLOB_SIZE = 2**21
|
||||||
MIN_BLOB_DATA_PAYMENT_RATE = .5 # points/megabyte
|
MIN_BLOB_DATA_PAYMENT_RATE = .005 # points/megabyte
|
||||||
MIN_BLOB_INFO_PAYMENT_RATE = 2.0 # points/1000 infos
|
MIN_BLOB_INFO_PAYMENT_RATE = .02 # points/1000 infos
|
||||||
MIN_VALUABLE_BLOB_INFO_PAYMENT_RATE = 5.0 # points/1000 infos
|
MIN_VALUABLE_BLOB_INFO_PAYMENT_RATE = .05 # points/1000 infos
|
||||||
MIN_VALUABLE_BLOB_HASH_PAYMENT_RATE = 5.0 # points/1000 infos
|
MIN_VALUABLE_BLOB_HASH_PAYMENT_RATE = .05 # points/1000 infos
|
||||||
MAX_CONNECTIONS_PER_STREAM = 5
|
MAX_CONNECTIONS_PER_STREAM = 5
|
||||||
|
|
||||||
POINTTRADER_SERVER = 'http://ec2-54-187-192-68.us-west-2.compute.amazonaws.com:2424'
|
POINTTRADER_SERVER = 'http://ec2-54-187-192-68.us-west-2.compute.amazonaws.com:2424'
|
||||||
|
|
Loading…
Reference in a new issue