From 6f6a946967f43bfafb09c2250f84d024af0f9fcb Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Mon, 9 Jul 2012 22:22:21 +0200 Subject: [PATCH] Fix typo in comment in TransactionConfidence.java --- .../java/com/google/bitcoin/core/TransactionConfidence.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/google/bitcoin/core/TransactionConfidence.java b/core/src/main/java/com/google/bitcoin/core/TransactionConfidence.java index 9c6253f8..ee93fe7c 100644 --- a/core/src/main/java/com/google/bitcoin/core/TransactionConfidence.java +++ b/core/src/main/java/com/google/bitcoin/core/TransactionConfidence.java @@ -364,7 +364,7 @@ public class TransactionConfidence implements Serializable { /** * Called when the transaction becomes newly dead, that is, we learn that one of its inputs has already been spent * in such a way that the double-spending transaction takes precedence over this one. It will not become valid now - * unless there is a re-org. Automatically sets the confidence type to OVERRIDDEN_BY_DOUBLE_SPEND. + * unless there is a re-org. Automatically sets the confidence type to DEAD. */ public synchronized void setOverridingTransaction(Transaction overridingTransaction) { this.overridingTransaction = overridingTransaction;