TransactionConfidence: Print source to toString().

This commit is contained in:
Andreas Schildbach
2016-11-23 18:57:49 +01:00
parent 85fcd5101f
commit 51f6b9b682

View File

@@ -357,6 +357,8 @@ public class TransactionConfidence {
getAppearedAtChainHeight(), getDepthInBlocks())); getAppearedAtChainHeight(), getDepthInBlocks()));
break; break;
} }
if (source != Source.UNKNOWN)
builder.append(" Source: ").append(source);
return builder.toString(); return builder.toString();
} }