From: Forrest Voight Date: Sun, 21 Jul 2013 22:32:34 +0000 (-0400) Subject: fixed error in assertion text X-Git-Tag: 13.3~11 X-Git-Url: https://git.novaco.in/?p=p2pool.git;a=commitdiff_plain;h=ebae741e9ed0002096b6c5c2b17aff259b35f093 fixed error in assertion text --- diff --git a/p2pool/p2p.py b/p2pool/p2p.py index f86ec69..f3798ce 100644 --- a/p2pool/p2p.py +++ b/p2pool/p2p.py @@ -285,7 +285,7 @@ class Protocol(p2protocol.Protocol): if share.VERSION >= 13: # send full transaction for every new_transaction_hash that peer does not know for tx_hash in share.share_info['new_transaction_hashes']: - assert tx_hash in known_txs, 'tried to broadcast transaction without knowing all its new transactions' + assert tx_hash in known_txs, 'tried to broadcast share without knowing all its new transactions' if tx_hash not in self.remote_tx_hashes: tx_hashes.add(tx_hash) continue