mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-26 22:09:54 +00:00
raise the limit on block hashes and share hashes from 30 to 2**20
This commit is contained in:
parent
1c5ceab101
commit
8e4aa3e1fb
@ -50,10 +50,10 @@ class RIBucketWriter(RemoteInterface):
|
||||
"""
|
||||
return None
|
||||
|
||||
def put_block_hashes(blockhashes=ListOf(Hash)):
|
||||
def put_block_hashes(blockhashes=ListOf(Hash, maxLength=2**20)):
|
||||
return None
|
||||
|
||||
def put_share_hashes(sharehashes=ListOf(TupleOf(int, Hash))):
|
||||
def put_share_hashes(sharehashes=ListOf(TupleOf(int, Hash), maxLength=2**20)):
|
||||
return None
|
||||
|
||||
def close():
|
||||
|
Loading…
x
Reference in New Issue
Block a user