Skip to content

Commit c12f6df

Browse files
committed
minor modifications to webapp
1 parent 83ee837 commit c12f6df

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
Binary file not shown.

coinjoin/src/graphAnalysis/TransactionAnalysis.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ public static void main(String[] args){
2525
List<Subset> outputSubsets = calculateSubsets(tx.output, OUTPUT);
2626
if (inputSubsets.size() == 0 || outputSubsets.size() == 0){ // at least one of list has only one node, cannot be further partitioned
2727
System.out.println("At least one side has only one party");
28-
// System.out.println("#Different partitions: 0");
29-
System.out.println("#Different partitions: 1");
28+
System.out.println("#Different partitions: 0");
29+
//System.out.println("#Different partitions: 1");
3030
return;
3131
}
3232
List<SubsetPair> pairList = calculateValidSubsetPairs(inputSubsets, outputSubsets, tx.cost);
3333
if (pairList.size() == 0){ // No valid pairs formed
3434
System.out.println("No valid pairs formed");
35-
// System.out.println("#Different partitions: 0");
36-
System.out.println("#Different partitions: 1");
35+
System.out.println("#Different partitions: 0");
36+
//System.out.println("#Different partitions: 1");
3737
return;
3838
}
3939
List<SubsetPairGroup> groupList = calculateCoveringSubsetPairGroups(pairList);

coinjoin/webapp/templates/done.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<img src="/static/pagebanner_anonymize-bitcoin.jpg"><br><br>
44

55
<h1> Privacy of your transaction: </h1>
6-
<pre style="text-align: center; width: 500;">
6+
<pre style="text-align: left; width: 500;">
77
{{ tx_out }}
88
</pre>
99

0 commit comments

Comments
 (0)