raise the limit on block hashes and share hashes from 30 to 2**20

This commit is contained in:
Zooko O'Whielacronx 2007-04-29 23:51:15 -07:00
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():