Fix an assertion in Wallet to use the correct type.

This commit is contained in:
Mike Hearn
2011-06-14 12:39:18 +00:00
parent a955187e04
commit 6a4d0e866f

View File

@@ -386,7 +386,7 @@ public class Wallet implements Serializable {
* Call this when we have successfully transmitted the send tx to the network, to update the wallet.
*/
synchronized void confirmSend(Transaction tx) {
assert !pending.containsKey(tx) : "confirmSend called on the same transaction twice";
assert !pending.containsKey(tx.getHash()) : "confirmSend called on the same transaction twice";
log.info("confirmSend of {}", tx.getHashAsString());
// Mark the outputs of the used transcations as spent, so we don't try and spend it again.
for (TransactionInput input : tx.inputs) {