Transaction: Remove confidence (and Context requirement) from Transaction.toString()

This commit is contained in:
Eric Winer
2016-08-17 08:45:47 -04:00
committed by Andreas Schildbach
parent 4b624b7198
commit 9a45159344

View File

@@ -635,8 +635,6 @@ public class Transaction extends ChildMessage {
public String toString(@Nullable AbstractBlockChain chain) {
StringBuilder s = new StringBuilder();
s.append(" ").append(getHashAsString()).append('\n');
if (hasConfidence())
s.append(" confidence: ").append(getConfidence()).append('\n');
if (updatedAt != null)
s.append(" updated: ").append(Utils.dateTimeFormat(updatedAt)).append('\n');
if (isTimeLocked()) {