TransactionConfidence: Print source to toString().

This commit is contained in:
Andreas Schildbach
2016-11-23 18:57:49 +01:00
parent 34e33a194b
commit ba6e65f091

View File

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