if os.path.exists(self._encoding_file):
self.log("ciphertext already present, bypassing fetch",
level=log.UNUSUAL)
- # XXX the following comment is probably stale, since
- # LocalCiphertextReader.get_plaintext_hashtree_leaves does not exist.
- #
- # we'll still need the plaintext hashes (when
- # LocalCiphertextReader.get_plaintext_hashtree_leaves() is
- # called), and currently the easiest way to get them is to ask
- # the sender for the last byte of ciphertext. That will provoke
- # them into reading and hashing (but not sending) everything
- # else.
- have = os.stat(self._encoding_file)[stat.ST_SIZE]
- d = self.call("read_encrypted", have-1, 1)
+ d = defer.succeed(None)
else:
# first, find out how large the file is going to be
d = self.call("get_size")