summaryrefslogtreecommitdiff
path: root/73/9a7126c6aefd23cd767effb28ad5f573edb9e1
blob: bb2e6634e34e8f5c929e2d7a3fc9e47751f9be25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
Return-Path: <eric@voskuil.org>
Received: from smtp3.osuosl.org (smtp3.osuosl.org [140.211.166.136])
 by lists.linuxfoundation.org (Postfix) with ESMTP id AA33FC0001
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Wed,  3 Mar 2021 15:48:07 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
 by smtp3.osuosl.org (Postfix) with ESMTP id 7ACA46F4A3
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Wed,  3 Mar 2021 15:48:07 +0000 (UTC)
X-Virus-Scanned: amavisd-new at osuosl.org
X-Spam-Flag: NO
X-Spam-Score: -1.897
X-Spam-Level: 
X-Spam-Status: No, score=-1.897 tagged_above=-999 required=5
 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
 HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001,
 SPF_NONE=0.001] autolearn=ham autolearn_force=no
Authentication-Results: smtp3.osuosl.org (amavisd-new);
 dkim=pass (2048-bit key) header.d=voskuil-org.20150623.gappssmtp.com
Received: from smtp3.osuosl.org ([127.0.0.1])
 by localhost (smtp3.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id fudcTtAvgGbr
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Wed,  3 Mar 2021 15:48:05 +0000 (UTC)
X-Greylist: delayed 01:16:32 by SQLgrey-1.8.0
Received: from mail-pj1-x1034.google.com (mail-pj1-x1034.google.com
 [IPv6:2607:f8b0:4864:20::1034])
 by smtp3.osuosl.org (Postfix) with ESMTPS id 421AC605C5
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Wed,  3 Mar 2021 15:48:05 +0000 (UTC)
Received: by mail-pj1-x1034.google.com with SMTP id l18so4576155pji.3
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Wed, 03 Mar 2021 07:48:05 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=voskuil-org.20150623.gappssmtp.com; s=20150623;
 h=from:to:cc:references:in-reply-to:subject:date:message-id
 :mime-version:thread-index:content-language;
 bh=c8ufxzfwdjhzEHkCbnXwv7SY/nKD4kVpJIyPN7ZZsdA=;
 b=szostWpT5WXyOxvhi0Uy+eKlvGdARCVBlqIjzEpOHu17STI97PZ+Np81nEB39JmuZb
 mYlF5cF+EjBLg4+cBCU8SXlXZ+f5V8a+alhotBOb+LKNGD1gjagFhdahXsEnvctFRIv2
 S6K/ewljtJBEryHY4Js9ZfQ6yZs5r+jdETt6NJKm+92FOB2+UIHKClMVGUHekxiZFdry
 +T6qxCCgAWPZit5rHx+74sEWpZ3DSsFYkZksCkOkJNfh1C3zVAEJFvVVbmW3T5OoqnL4
 ZVPxKYEfVcy+hMQAy2+r8e5BR2+N1ci0N5IldD8Czljwhk/225mbDgj2MzlQX2y0dVdP
 mTCg==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:from:to:cc:references:in-reply-to:subject:date
 :message-id:mime-version:thread-index:content-language;
 bh=c8ufxzfwdjhzEHkCbnXwv7SY/nKD4kVpJIyPN7ZZsdA=;
 b=KejFrPRle0gwCtZjyCwLxmjuK+DyhQGOZcw/BcjXSmSUinxmvvL0v/wiJxJtj45CZG
 4zt58e1/Xe+nB6G6IeEXin4VzUltmSwoRicXGkA7l4TQqTZykuubzkH0yjkL3Ifo4Fdb
 Q5QB2xXp9LT6MY26Q6e9qZzuIp4g180u/IXihpt2duAEn/rIQ3omv/W12jVkZlrwoN2Y
 ReM8isP5PyN/vinlcTT8O4lzXHC3ljjcgK4qnrpPEjlCN1SzAHIOPp1hXAatnVweePQq
 0UPhr998ZEAEL0QTKKsaTrO93o/vaxmshxO0dKZbbkIBHc+IEQYgDM/bNS2mNaACyYp1
 eKsg==
X-Gm-Message-State: AOAM532FlKFTH47NB/pQ3ISTa4o42uSo0vCQYK2eU8r77efk7OU5xyy8
 0k+FeT2QvBbEGg+WnesQAQmAY6Nx9ieIhrXE
X-Google-Smtp-Source: ABdhPJxirIUQb6fUmQjfYw5B9P7JXr7EeV810/jrivPRvrNrRkP6/1WFMaRwUheIZV6ieQUI6ZZHnw==
X-Received: by 2002:a17:902:ce8d:b029:e4:bc38:c4 with SMTP id
 f13-20020a170902ce8db02900e4bc3800c4mr2465867plg.48.1614772539762; 
 Wed, 03 Mar 2021 03:55:39 -0800 (PST)
Received: from ERICDESKTOP ([2601:600:9c00:1d0::b000])
 by smtp.gmail.com with ESMTPSA id b10sm22826372pgm.76.2021.03.03.03.55.39
 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128);
 Wed, 03 Mar 2021 03:55:39 -0800 (PST)
From: <eric@voskuil.org>
To: "'LORD HIS EXCELLENCY JAMES HRMH'" <willtech@live.com.au>,
 "'Bitcoin Protocol Discussion'" <bitcoin-dev@lists.linuxfoundation.org>
References: <SL2P216MB0089B70AEDD58F2EBC46B4309D9A9@SL2P216MB0089.KORP216.PROD.OUTLOOK.COM>,
 <A326C6D2-7C6E-42A2-93C9-DC7647BB09B6@voskuil.org>
 <SL2P216MB00895015DAD709E1E12EA7EA9D989@SL2P216MB0089.KORP216.PROD.OUTLOOK.COM>
In-Reply-To: <SL2P216MB00895015DAD709E1E12EA7EA9D989@SL2P216MB0089.KORP216.PROD.OUTLOOK.COM>
Date: Wed, 3 Mar 2021 03:55:38 -0800
Message-ID: <00ee01d71024$2145ab40$63d101c0$@voskuil.org>
MIME-Version: 1.0
Content-Type: multipart/alternative;
 boundary="----=_NextPart_000_00EF_01D70FE1.1329BE40"
X-Mailer: Microsoft Outlook 16.0
Thread-Index: AQHt4UEM/boPATH1Wxq/eTFHV4bbTQF0Ftf7Aj07FXSqJvec0A==
Content-Language: en-us
X-Mailman-Approved-At: Wed, 03 Mar 2021 17:50:41 +0000
Subject: Re: [bitcoin-dev] Taproot NACK
X-BeenThere: bitcoin-dev@lists.linuxfoundation.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: Bitcoin Protocol Discussion <bitcoin-dev.lists.linuxfoundation.org>
List-Unsubscribe: <https://lists.linuxfoundation.org/mailman/options/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=unsubscribe>
List-Archive: <http://lists.linuxfoundation.org/pipermail/bitcoin-dev/>
List-Post: <mailto:bitcoin-dev@lists.linuxfoundation.org>
List-Help: <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=help>
List-Subscribe: <https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Mar 2021 15:48:07 -0000

This is a multipart message in MIME format.

------=_NextPart_000_00EF_01D70FE1.1329BE40
Content-Type: text/plain;
	charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

> and all transactions should be open to the scrutiny of an honest =
government.

=20

From what do you derive the moral judgement =E2=80=9Cshould=E2=80=9D in =
this context?

=20

> The value proposition is =E2=80=A6 because people will trust the =
system?

=20

So, it=E2=80=99s valuable because it=E2=80=99s trusted? Trusted to do =
what exactly? What that government money doesn=E2=80=99t already do, =
specifically.

=20

> If it is not necessary to maintain consensus then what is consensus?

=20

Nothing is =E2=80=9Cnecessary=E2=80=9D. Consensus is an agreement among =
people. It=E2=80=99s voluntary. Any person can choose to leave, create =
or join another consensus, or stay where they are.

=20

> BCH exists in addition to BTC Bitcoin.

=20

Exactly, people are free to do what they want. Nobody =
=E2=80=9Cshould=E2=80=9D do anything except that which they want to do. =
This and this alone is the =E2=80=9Chighest value=E2=80=9D if one =
accepts the moral principle of non-aggression. You do not appear to, and =
I=E2=80=99m afraid that may be well outside the consensus view among =
core bitcoin developers (the people you are talking to).

=20

e

=20

From: LORD HIS EXCELLENCY JAMES HRMH <willtech@live.com.au>=20
Sent: Tuesday, March 2, 2021 6:55 PM
To: Eric Voskuil <eric@voskuil.org>; Bitcoin Protocol Discussion =
<bitcoin-dev@lists.linuxfoundation.org>
Cc: Ariel Lorenzo-Luaces <arielluaces@gmail.com>
Subject: Re: [bitcoin-dev] Taproot NACK

=20

Good Afternoon,=20

=20

All people are entitled to privacy in their purse, and all transactions =
should be open to the scrutiny of an honest government. You can debate =
whether any government is honest. Mixing does not remove the record from =
the public ledger, where it is possible to see that any Bitcoin has =
transferred from an UTXO to some Pay-To address even with some amount of =
transaction in between them. The value proposition is the same  =
<https://www.youtube.com/watch?v=3Dl9jOJk30eQs> =
https://www.youtube.com/watch?v=3Dl9jOJk30eQs - because people will =
trust the system; people trust the existing consensus.

=20

Let us dispense with the screen and deal with the issue only. If it is =
not necessary to maintain consensus then what is consensus?

=20

The intrinsic value of Bitcoin is because of the existing consensus. =
Even if any proposal gains consensus there is no objective way to show =
it improves the intrinsic value without trialing and the possibility of =
failure and so protecting the existing consensus should be the highest =
value. This understanding is the reason BCH exists in addition to BTC =
Bitcoin.

=20

KING JAMES HRMH

Great British Empire

=20

Regards,

The Australian

LORD HIS EXCELLENCY JAMES HRMH (& HMRH)

of Hougun Manor & Glencoe & British Empire

MR. Damian A. James Williamson

Wills

=20

et al.

=20

=20

Willtech

www.willtech.com.au

www.go-overt.com

and other projects

=20

earn.com/willtech

linkedin.com/in/damianwilliamson

=20

=20

m. 0487135719

f. +61261470192

=20

=20

This email does not constitute a general advice. Please disregard this =
email if misdelivered.=20

  _____ =20

From: Eric Voskuil <eric@voskuil.org <mailto:eric@voskuil.org> >
Sent: Tuesday, 2 March 2021 9:37 AM
To: LORD HIS EXCELLENCY JAMES HRMH <willtech@live.com.au =
<mailto:willtech@live.com.au> >; Bitcoin Protocol Discussion =
<bitcoin-dev@lists.linuxfoundation.org =
<mailto:bitcoin-dev@lists.linuxfoundation.org> >
Cc: Ariel Lorenzo-Luaces <arielluaces@gmail.com =
<mailto:arielluaces@gmail.com> >
Subject: Re: [bitcoin-dev] Taproot NACK=20

=20

To be clear, is this a NACK because Taproot reduces =
=E2=80=9Ctransparency=E2=80=9D (increases privacy) on the chain =
(=E2=80=9Cmaintaining consensus=E2=80=9D is obviously an argument =
against any protocol change, so that=E2=80=99s a red herring)?=20

=20

And is it your theory that only an =E2=80=9Chonest=E2=80=9D (statute =
abiding) person should have privacy, and not against the state, and/or =
that mixers are sufficient privacy?

=20

Personally, I=E2=80=99m not moved by such an argument. What do you think =
is the value proposition of Bitcoin?

=20

e





On Mar 1, 2021, at 14:21, LORD HIS EXCELLENCY JAMES HRMH via bitcoin-dev =
<bitcoin-dev@lists.linuxfoundation.org =
<mailto:bitcoin-dev@lists.linuxfoundation.org> > wrote:

=EF=BB=BF=20

Good Afternoon,

=20

I am going to take tough terms with much of your reply and do appreciate =
a courteous practice. Having previously made public disclosure of my =
affiliation with Jambler.io it seems sufficient to disclose my =
affiliation through the link in my email signature block.

=20

My concern is not increased privacy it is maintaining consensus values =
and the transparency of the blockchain wherein all transactions are =
published in an immutable record and that forbids the redaction of =
information by any obfuscation. A separate concern is the availability =
of a privacy suitable for cash should a Bitcoin user desire and =
especially without disturbing the existing consensus.

=20

The use of a Bitcoin Mixer is to enable standard equivalent privacy. As =
you may experience yourself, you do not allow people to follow you =
around looking in your purse, suppose you are dealing entirely with =
cash, and to see where and how much you fill it up, and where you spend. =
Nonetheless, for an honest person, their wallet is available for =
government audit as are their financial affairs. This is consistent with =
the existing operation of consensus.

=20

My full email signature block is a disclosure where I have some =
affiliation with the referenced website being that it carries at least =
some information that I have provided or that in some way I am =
associated perhaps only making use of their services. For example, I =
hardly make a profit from LinkedIn just my information is there. Also, I =
have made previous public disclosure of the affiliation. Bitcoin Mixer =
2.0 is a partner mixer run by Jambler.io wherein I receive a service =
referral fee and am not in receipt of any part of the process =
transaction. The operation block diagram provided by Jambler.io is =
provided here and attached.

<ip.bitcointalk.org.png>

=20

[ip.bitcointalk.org.png]-Operation of Jambler.io partner mixer

https://ip.bitcointalk.org/?u=3Dhttps%3A%2F%2Fjambler.io%2Fimages%2Fschem=
e-1.png =
<https://ip.bitcointalk.org/?u=3Dhttps%3A%2F%2Fjambler.io%2Fimages%2Fsche=
me-1.png&t=3D622&c=3DgTi7r1cfh-yynw> &t=3D622&c=3DgTi7r1cfh-yynw

from this thread  https://bitcointalk.org/index.php?topic=3D5267588

=20

=20

The installation script provided by Jambler.io that is the basis of my =
referral website is also publicly published,

https://github.com/jambler-io/bitcoin-mixer

=20

The disclosure for the partner program is available from Jambler.io =
however and is made prominently on my referral website. While it may =
seem lucrative at first I insist all partner profits are reportable on =
your personal income.

https://jambler.io/become-partner.php

=20

I am certainly better than confident that you appreciate the difference =
between an open and transparent blockchain and the ability of the user =
to not reveal details of the content of their wallet publicly.

=20

If further clarification is required may I suggest you pay a token and =
mix some Bitcoin wherein our discussion may then have some point of =
reference.

=20

KING JAMES HRMH

Great British Empire

=20

Regards,

The Australian

LORD HIS EXCELLENCY JAMES HRMH (& HMRH)

of Hougun Manor & Glencoe & British Empire

MR. Damian A. James Williamson

Wills

=20

et al.

=20

=20

Willtech

www.willtech.com.au <http://www.willtech.com.au>=20

www.go-overt.com <http://www.go-overt.com>=20

and other projects

=20

earn.com/willtech

linkedin.com/in/damianwilliamson

=20

=20

m. 0487135719

f. +61261470192

=20

=20

This email does not constitute a general advice. Please disregard this =
email if misdelivered.

  _____ =20

From: Ariel Lorenzo-Luaces <arielluaces@gmail.com =
<mailto:arielluaces@gmail.com> >
Sent: Monday, 1 March 2021 12:07 AM
To: LORD HIS EXCELLENCY JAMES HRMH <willtech@live.com.au =
<mailto:willtech@live.com.au> >; Bitcoin Protocol Discussion =
<bitcoin-dev@lists.linuxfoundation.org =
<mailto:bitcoin-dev@lists.linuxfoundation.org> >
Subject: Re: [bitcoin-dev] Taproot NACK=20

=20

Hello LORD HIS EXCELLENCY JAMES HRMH

I find a striking dichotomy between your concern of increased privacy in =
bitcoin and your link to a bitcoin mixer in your signature =
www.go-overt.com <http://www.go-overt.com>=20

At first your concerns seemed genuine but after seeing your promotion of =
a bitcoin mixer I'm thinking your concerns may be more profit motivated? =
I can't tell since you failed to disclose your relationship with the =
mixer.

Could you please clarify your association with the bitcoin mixer and =
moving forward could you please always do proper disclosure any time =
you're publically talking about bitcoin transaction privacy. It's only =
fair to do so as to not mislead people in an attempt to manipulate at =
worst and just a courteous practice at best.

Cheers

Ariel Lorenzo-Luaces

On Feb 28, 2021, at 4:36 AM, LORD HIS EXCELLENCY JAMES HRMH via =
bitcoin-dev <bitcoin-dev@lists.linuxfoundation.org =
<mailto:bitcoin-dev@lists.linuxfoundation.org> > wrote:=20

Good Evening,=20

=20

Thank-you for your advice   @JeremyRubin =
<https://twitter.com/JeremyRubin>   on the basis you advise, "Taproot =
does not enable monero-like privacy features", I am prepred to withdraw =
my NACK notably that the existing feeatures of Bitcoin MUST be =
maintained, and whereby the UTXO of a transaction is identifiable, the =
PayTo Address, and the amount all without any obfuscation.=20

=20

Lightning does not really provide obfuscation, it provides a result of a =
subset of transactions although the operation of the channel is =
observable to the parties.=20

=20

The reports I were reading concerning the supposed operation of Taproot =
published in a public media channel may have been speculation or =
misinformation nonetheless it is prudent to conditionally reply as you =
see that I have. It is important not to allow things to slip through the =
cracks. As you may believe may astute reviewers could make a full =
disclosure to this list it is not to be expected.=20

=20

KING JAMES HRMH=20

Great British Empire=20

=20

Regards,=20

The Australian=20

LORD HIS EXCELLENCY JAMES HRMH (& HMRH)=20

of Hougun Manor & Glencoe & British Empire=20

MR. Damian A. James Williamson=20

Wills=20

=20

et al.=20

=20

 =20

Willtech=20

www.willtech.com.au=20

www.go-overt.com=20

and other projects=20

 =20

earn.com/willtech=20

linkedin.com/in/damianwilliamson=20

=20

=20

m. 0487135719=20

f. +61261470192=20

=20

=20

This email does not constitute a general advice. Please disregard this =
email if misdelivered.=20

  _____ =20

From: Jeremy <jlrubin@mit.edu>
Sent: Sunday, 28 February 2021 3:14 AM
To: LORD HIS EXCELLENCY JAMES HRMH <willtech@live.com.au =
<mailto:willtech@live.com.au> >; Bitcoin Protocol Discussion =
<bitcoin-dev@lists.linuxfoundation.org =
<mailto:bitcoin-dev@lists.linuxfoundation.org> >
Subject: Re: [bitcoin-dev] Taproot NACK=20

 =20

I have good news for you: Taproot does not enable monero-like privacy =
features any moreso than already exist in Bitcoin today. At its core, =
taproot is a way to make transactions with embedded smart contracts less =
expensive, done so in a manner that may marginally improve privacy =
dependent on user behavior (but not in the monero-like way you mention). =
For example, it makes it possible for lightning channels to look =
structurally similar to single key wallets, but it does nothing =
inherently to obfuscate the transaction graph as in monero.=20

=20

Such "monero-like" transaction graph obfuscation may already exist in =
Bitcoin via other techniques (coinjoin, payjoin, coinswap, lightning, =
etc) with or without Taproot, so the point is further moot.=20

=20

Do you have a source on your reporting?=20

=20

You may wish to rescind your nack.=20


=20

=20

--=20
@JeremyRubin <https://twitter.com/JeremyRubin> =20

=20

=20

On Sat, Feb 27, 2021 at 5:46 AM LORD HIS EXCELLENCY JAMES HRMH via =
bitcoin-dev < bitcoin-dev@lists.linuxfoundation.org =
<mailto:bitcoin-dev@lists.linuxfoundation.org> > wrote:=20

Good Afternoon,=20

=20

It has been reported that Taproot will enable some Monero like features =
including the ability to hide transactions.=20

=20

If that is the case I offer a full NACK and let me explain.=20

=20

A part of the benefit of using Bitcoin is its honesty. The full =
transaction is published on the blockchain. If that were to change so =
that transactions may be obfuscated from scrutiny then any government =
would have unlimited impetus to ban Bitcoin, and speculation has that is =
the reason India has been reported to have banned cryptocurrencies =
already.=20

=20

I am in support of the expanded use case of Bitcoin without harming the =
established robust fairness and equal equity offered. The core =
functionality of Bitcoin, its values, must remain unaltered.=20

=20

KING JAMES HRMH=20

Great British Empire=20

=20

Regards,=20

The Australian=20

LORD HIS EXCELLENCY JAMES HRMH (& HMRH)=20

of Hougun Manor & Glencoe & British Empire=20

MR. Damian A. James Williamson=20

Wills=20

=20

et al.=20

=20

 =20

Willtech=20

www.willtech.com.au <http://www.willtech.com.au> =20

www.go-overt.com <http://www.go-overt.com> =20

and other projects=20

 =20

earn.com/willtech <http://earn.com/willtech> =20

linkedin.com/in/damianwilliamson =
<http://linkedin.com/in/damianwilliamson> =20

=20

=20

m. 0487135719=20

f. +61261470192=20

=20

=20

This email does not constitute a general advice. Please disregard this =
email if misdelivered.=20

_______________________________________________=20
bitcoin-dev mailing list=20
bitcoin-dev@lists.linuxfoundation.org =
<mailto:bitcoin-dev@lists.linuxfoundation.org> =20
https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev=20

=20


  _____ =20


bitcoin-dev mailing list
bitcoin-dev@lists.linuxfoundation.org =
<mailto:bitcoin-dev@lists.linuxfoundation.org>=20
https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev

<ip.bitcointalk.org.png>

_______________________________________________
bitcoin-dev mailing list
bitcoin-dev@lists.linuxfoundation.org =
<mailto:bitcoin-dev@lists.linuxfoundation.org>=20
https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev


------=_NextPart_000_00EF_01D70FE1.1329BE40
Content-Type: text/html;
	charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<html xmlns:v=3D"urn:schemas-microsoft-com:vml" =
xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" =
xmlns=3D"http://www.w3.org/TR/REC-html40"><head><meta =
http-equiv=3DContent-Type content=3D"text/html; charset=3Dutf-8"><meta =
name=3DGenerator content=3D"Microsoft Word 15 (filtered medium)"><!--[if =
!mso]><style>v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style><![endif]--><style><!--
/* Font Definitions */
@font-face
	{font-family:"Cambria Math";
	panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
	{font-family:Calibri;
	panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
	{font-family:Cantarell;
	panose-1:0 0 0 0 0 0 0 0 0 0;}
@font-face
	{font-family:Consolas;
	panose-1:2 11 6 9 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
	{margin:0in;
	font-size:11.0pt;
	font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
	{mso-style-priority:99;
	color:blue;
	text-decoration:underline;}
pre
	{mso-style-priority:99;
	mso-style-link:"HTML Preformatted Char";
	margin:0in;
	margin-bottom:.0001pt;
	font-size:10.0pt;
	font-family:"Courier New";}
span.xxapple-converted-space
	{mso-style-name:x_x_apple-converted-space;}
span.HTMLPreformattedChar
	{mso-style-name:"HTML Preformatted Char";
	mso-style-priority:99;
	mso-style-link:"HTML Preformatted";
	font-family:Consolas;}
span.EmailStyle23
	{mso-style-type:personal-reply;
	font-family:"Calibri",sans-serif;
	color:windowtext;}
.MsoChpDefault
	{mso-style-type:export-only;
	font-size:10.0pt;}
@page WordSection1
	{size:8.5in 11.0in;
	margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
	{page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext=3D"edit" spidmax=3D"1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext=3D"edit">
<o:idmap v:ext=3D"edit" data=3D"1" />
</o:shapelayout></xml><![endif]--></head><body lang=3DEN-US link=3Dblue =
vlink=3Dpurple style=3D'word-wrap:break-word'><div =
class=3DWordSection1><p class=3DMsoNormal>&gt; <span =
style=3D'font-family:"Cantarell",serif'>and all transactions should be =
open to the scrutiny of an honest government.<o:p></o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>From =
what do you derive the moral judgement =E2=80=9Cshould=E2=80=9D in this =
context?<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>&gt; The =
value proposition is =E2=80=A6 because people will trust the =
system?<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>So, =
it=E2=80=99s valuable because it=E2=80=99s trusted? Trusted to do what =
exactly? What that government money doesn=E2=80=99t already do, =
specifically.<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>&gt; If =
it is not necessary to maintain consensus then what is =
consensus?<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>Nothing =
is =E2=80=9Cnecessary=E2=80=9D. Consensus is an agreement among people. =
It=E2=80=99s voluntary. Any person can choose to leave, create or join =
another consensus, or stay where they are.<o:p></o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>&gt; BCH =
exists in addition to BTC Bitcoin.<o:p></o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>Exactly, =
people are free to do what they want. Nobody =E2=80=9Cshould=E2=80=9D do =
anything except that which they want to do. This and this alone is the =
=E2=80=9Chighest value=E2=80=9D if one accepts the moral principle of =
non-aggression. You do not appear to, and I=E2=80=99m afraid that may be =
well outside the consensus view among core bitcoin developers (the =
people you are talking to).<o:p></o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>e</span><o:p></o:p></p><p =
class=3DMsoNormal><o:p>&nbsp;</o:p></p><div><div =
style=3D'border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in =
0in 0in'><p class=3DMsoNormal><b>From:</b> LORD HIS EXCELLENCY JAMES =
HRMH &lt;willtech@live.com.au&gt; <br><b>Sent:</b> Tuesday, March 2, =
2021 6:55 PM<br><b>To:</b> Eric Voskuil &lt;eric@voskuil.org&gt;; =
Bitcoin Protocol Discussion =
&lt;bitcoin-dev@lists.linuxfoundation.org&gt;<br><b>Cc:</b> Ariel =
Lorenzo-Luaces &lt;arielluaces@gmail.com&gt;<br><b>Subject:</b> Re: =
[bitcoin-dev] Taproot NACK<o:p></o:p></p></div></div><p =
class=3DMsoNormal><o:p>&nbsp;</o:p></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif;color:black;background:white'>Good=
 Afternoon,</span> <o:p></o:p></p><p class=3DMsoNormal =
style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>All people are =
entitled to privacy in their purse, and all transactions should be open =
to the scrutiny of an honest government. You can debate whether any =
government is honest. Mixing does not remove the record from the public =
ledger, where it is possible to see that any Bitcoin has transferred =
from an UTXO to some Pay-To address even with some amount of transaction =
in between them. The value proposition is the same <a =
href=3D"https://www.youtube.com/watch?v=3Dl9jOJk30eQs"><span =
style=3D'color:#1B6ACB'>https://www.youtube.com/watch?v=3Dl9jOJk30eQs</sp=
an></a> - because people will trust the system; people trust the =
existing consensus.</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>Let us dispense with =
the screen and deal with the issue only. If it is not necessary to =
maintain consensus then what is consensus?</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>The intrinsic value =
of Bitcoin is because of the existing consensus. Even if any proposal =
gains consensus there is no objective way to show it improves the =
intrinsic value without trialing and the possibility of failure and so =
protecting the existing consensus should be the highest value. This =
understanding is the reason BCH exists in addition to BTC =
Bitcoin.</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>KING JAMES =
HRMH</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>Great British =
Empire</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>Regards,</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>The =
Australian</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>LORD HIS EXCELLENCY =
JAMES HRMH (&amp; HMRH)</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>of Hougun Manor =
&amp; Glencoe &amp; British Empire</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>MR. Damian A. James =
Williamson</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>Wills</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>et al.</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>&nbsp;</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>Willtech</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'><a =
href=3D"www.willtech.com.au"><span =
style=3D'color:#1B6ACB'>www.willtech.com.au</span></a></span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'><a =
href=3D"www.go-overt.com"><span =
style=3D'color:#1B6ACB'>www.go-overt.com</span></a></span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>and other =
projects</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>&nbsp;</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>earn.com/willtech</sp=
an><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>linkedin.com/in/damia=
nwilliamson</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>m. =
0487135719</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif;color:black'>f. =
+61261470192</span><span =
style=3D'font-family:"Cantarell",serif'><o:p></o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal style=3D'background:white'><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-size:10.0pt;font-family:"Cantarell",serif;color:black;backg=
round:white'>This email does not constitute a general advice. Please =
disregard this email if misdelivered.</span> <o:p></o:p></p><div><div =
class=3DMsoNormal align=3Dcenter style=3D'text-align:center'><hr =
size=3D2 width=3D"98%" align=3Dcenter></div><div id=3DdivRplyFwdMsg><p =
class=3DMsoNormal><b><span style=3D'color:black'>From:</span></b><span =
style=3D'color:black'> Eric Voskuil &lt;<a =
href=3D"mailto:eric@voskuil.org">eric@voskuil.org</a>&gt;<br><b>Sent:</b>=
 Tuesday, 2 March 2021 9:37 AM<br><b>To:</b> LORD HIS EXCELLENCY JAMES =
HRMH &lt;<a =
href=3D"mailto:willtech@live.com.au">willtech@live.com.au</a>&gt;; =
Bitcoin Protocol Discussion &lt;<a =
href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org">bitcoin-dev@lists.l=
inuxfoundation.org</a>&gt;<br><b>Cc:</b> Ariel Lorenzo-Luaces &lt;<a =
href=3D"mailto:arielluaces@gmail.com">arielluaces@gmail.com</a>&gt;<br><b=
>Subject:</b> Re: [bitcoin-dev] Taproot NACK</span> =
<o:p></o:p></p><div><p =
class=3DMsoNormal>&nbsp;<o:p></o:p></p></div></div><div><div><p =
class=3DMsoNormal>To be clear, is this a NACK because Taproot reduces =
=E2=80=9Ctransparency=E2=80=9D (increases privacy) on the chain =
(=E2=80=9Cmaintaining consensus=E2=80=9D is obviously an argument =
against any protocol change, so that=E2=80=99s a red =
herring)?&nbsp;<o:p></o:p></p></div><div><p =
class=3DMsoNormal><o:p>&nbsp;</o:p></p></div><div><p =
class=3DMsoNormal>And is it your theory that only an =
=E2=80=9Chonest=E2=80=9D (statute abiding) person should have privacy, =
and not against the state, and/or that mixers are sufficient =
privacy?<o:p></o:p></p></div><div><p =
class=3DMsoNormal><o:p>&nbsp;</o:p></p></div><div><p =
class=3DMsoNormal>Personally, I=E2=80=99m not moved by such an argument. =
What do you think is the value proposition of =
Bitcoin?<o:p></o:p></p></div><div><p =
class=3DMsoNormal><o:p>&nbsp;</o:p></p></div><div><p =
class=3DMsoNormal>e<o:p></o:p></p></div><div><p =
class=3DMsoNormal><br><br><o:p></o:p></p><blockquote =
style=3D'margin-top:5.0pt;margin-bottom:5.0pt'><p class=3DMsoNormal =
style=3D'margin-bottom:12.0pt'>On Mar 1, 2021, at 14:21, LORD HIS =
EXCELLENCY JAMES HRMH via bitcoin-dev &lt;<a =
href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org">bitcoin-dev@lists.l=
inuxfoundation.org</a>&gt; =
wrote:<o:p></o:p></p></blockquote></div><blockquote =
style=3D'margin-top:5.0pt;margin-bottom:5.0pt'><div><p =
class=3DMsoNormal>=EF=BB=BF <o:p></o:p></p><div><p =
class=3DMsoNormal><span style=3D'font-size:12.0pt;color:black'>Good =
Afternoon,<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span style=3D'font-size:12.0pt;color:black'>I =
am going to take tough terms with much of your reply and do appreciate a =
courteous practice. Having previously made public disclosure of my =
affiliation with Jambler.io it seems sufficient to disclose my =
affiliation through the link in my email signature =
block.<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>My concern is not increased =
privacy it is maintaining consensus values and the transparency of the =
blockchain wherein all transactions are published in an immutable record =
and that forbids the redaction of information by any obfuscation. A =
separate concern is the availability of a privacy suitable for cash =
should a Bitcoin user desire and especially without disturbing the =
existing consensus.<o:p></o:p></span></p></div><div><p =
class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>The use of a Bitcoin Mixer is to =
enable standard equivalent privacy. As you may experience yourself, you =
do not allow people to follow you around looking in your purse, suppose =
you are dealing entirely with cash, and to see where and how much you =
fill it up, and where you spend. Nonetheless, for an honest person, =
their wallet is available for government audit as are their financial =
affairs. This is consistent with the existing operation of =
consensus.<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>My full email signature block is =
a disclosure where I have some affiliation with the referenced website =
being that it carries at least some information that I have provided or =
that in some way I am associated perhaps only making use of their =
services. For example, I hardly make a profit from LinkedIn just my =
information is there. Also, I have made previous public disclosure of =
the affiliation. Bitcoin Mixer 2.0 is a partner mixer run by Jambler.io =
wherein I receive a service referral fee and am not in receipt of any =
part of the process transaction. The operation block diagram provided by =
Jambler.io is provided here and =
attached.<o:p></o:p></span></p></div><div><div><div><p =
class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>&lt;ip.bitcointalk.org.png&gt;<o:p=
></o:p></span></p></div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>[ip.bitcointalk.org.png]-Operation=
 of Jambler.io partner mixer<o:p></o:p></span></p></div><div><p =
class=3DMsoNormal><span style=3D'font-size:12.0pt;color:black'><a =
href=3D"https://ip.bitcointalk.org/?u=3Dhttps%3A%2F%2Fjambler.io%2Fimages=
%2Fscheme-1.png&amp;t=3D622&amp;c=3DgTi7r1cfh-yynw">https://ip.bitcointal=
k.org/?u=3Dhttps%3A%2F%2Fjambler.io%2Fimages%2Fscheme-1.png&amp;t=3D622&a=
mp;c=3DgTi7r1cfh-yynw</a><o:p></o:p></span></p></div><div><p =
class=3DMsoNormal><span style=3D'font-size:12.0pt;color:black'>from this =
thread&nbsp; <a =
href=3D"https://bitcointalk.org/index.php?topic=3D5267588">https://bitcoi=
ntalk.org/index.php?topic=3D5267588</a><o:p></o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>The installation script provided =
by Jambler.io that is the basis of my referral website is also publicly =
published,<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><a =
href=3D"https://github.com/jambler-io/bitcoin-mixer">https://github.com/j=
ambler-io/bitcoin-mixer</a><o:p></o:p></span></p></div><p =
class=3DMsoNormal><o:p>&nbsp;</o:p></p><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>The disclosure for the partner =
program is available from Jambler.io however and is made prominently on =
my referral website. While it may seem lucrative at first I insist all =
partner profits are reportable on your personal =
income.<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><a =
href=3D"https://jambler.io/become-partner.php">https://jambler.io/become-=
partner.php</a><o:p></o:p></span></p></div><div><p =
class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span style=3D'font-size:12.0pt;color:black'>I =
am certainly better than confident that you appreciate the difference =
between an open and transparent blockchain and the ability of the user =
to not reveal details of the content of their wallet =
publicly.<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>If further clarification is =
required may I suggest you pay a token and mix some Bitcoin wherein our =
discussion may then have some point of =
reference.<o:p></o:p></span></p></div></div><div><p =
class=3DMsoNormal><o:p>&nbsp;</o:p></p></div><div><div =
id=3D"x_Signature"><div><div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>KING JAMES =
HRMH<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>Great British =
Empire<o:p></o:p></span></p><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>Regards,<o:p></o:p></span></p></di=
v><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>The =
Australian<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>LORD HIS EXCELLENCY JAMES HRMH =
(&amp; HMRH)<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>of Hougun Manor &amp; Glencoe =
&amp; British Empire<o:p></o:p></span></p></div><div><p =
class=3DMsoNormal><span style=3D'font-size:12.0pt;color:black'>MR. =
Damian A. James Williamson<o:p></o:p></span></p></div><div><p =
class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>Wills<o:p></o:p></span></p></div><=
div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>et =
al.<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>&nbsp;<o:p></o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>Willtech<o:p></o:p></span></p></di=
v><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><a =
href=3D"http://www.willtech.com.au">www.willtech.com.au</a><o:p></o:p></s=
pan></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><a =
href=3D"http://www.go-overt.com">www.go-overt.com</a><o:p></o:p></span></=
p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>and other =
projects<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>&nbsp;<o:p></o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>earn.com/willtech<o:p></o:p></span=
></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>linkedin.com/in/damianwilliamson<o=
:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>m. =
0487135719<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>f. =
+61261470192<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<p class=3DMsoNormal><span style=3D'font-size:10.0pt;color:black'>This =
email does not constitute a general advice. Please disregard this email =
if misdelivered.</span><span =
style=3D'font-size:12.0pt;color:black'><o:p></o:p></span></p></div></div>=
</div></div></div><div><div class=3DMsoNormal align=3Dcenter =
style=3D'text-align:center'><hr size=3D2 width=3D"98%" =
align=3Dcenter></div><div id=3D"x_divRplyFwdMsg"><p =
class=3DMsoNormal><b><span style=3D'color:black'>From:</span></b><span =
style=3D'color:black'> Ariel Lorenzo-Luaces &lt;<a =
href=3D"mailto:arielluaces@gmail.com">arielluaces@gmail.com</a>&gt;<br><b=
>Sent:</b> Monday, 1 March 2021 12:07 AM<br><b>To:</b> LORD HIS =
EXCELLENCY JAMES HRMH &lt;<a =
href=3D"mailto:willtech@live.com.au">willtech@live.com.au</a>&gt;; =
Bitcoin Protocol Discussion &lt;<a =
href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org">bitcoin-dev@lists.l=
inuxfoundation.org</a>&gt;<br><b>Subject:</b> Re: [bitcoin-dev] Taproot =
NACK</span> <o:p></o:p></p><div><p =
class=3DMsoNormal>&nbsp;<o:p></o:p></p></div></div><div><div><p =
class=3DMsoNormal style=3D'margin-bottom:12.0pt'>Hello LORD HIS =
EXCELLENCY JAMES HRMH<o:p></o:p></p></div><div><p class=3DMsoNormal =
style=3D'margin-bottom:12.0pt'>I find a striking dichotomy between your =
concern of increased privacy in bitcoin and your link to a bitcoin mixer =
in your signature <a =
href=3D"http://www.go-overt.com">www.go-overt.com</a><o:p></o:p></p></div=
><div><p class=3DMsoNormal style=3D'margin-bottom:12.0pt'>At first your =
concerns seemed genuine but after seeing your promotion of a bitcoin =
mixer I'm thinking your concerns may be more profit motivated? I can't =
tell since you failed to disclose your relationship with the =
mixer.<o:p></o:p></p></div><div><p class=3DMsoNormal =
style=3D'margin-bottom:12.0pt'>Could you please clarify your association =
with the bitcoin mixer and moving forward could you please always do =
proper disclosure any time you're publically talking about bitcoin =
transaction privacy. It's only fair to do so as to not mislead people in =
an attempt to manipulate at worst and just a courteous practice at =
best.<o:p></o:p></p></div><div><p =
class=3DMsoNormal>Cheers<o:p></o:p></p></div><div><p =
class=3DMsoNormal>Ariel Lorenzo-Luaces<o:p></o:p></p></div><div><p =
class=3DMsoNormal>On Feb 28, 2021, at 4:36 AM, LORD HIS EXCELLENCY JAMES =
HRMH via bitcoin-dev &lt;<a =
href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" =
target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a>&gt; wrote: =
<o:p></o:p></p><blockquote style=3D'border:none;border-left:solid =
#CCCCCC 1.0pt;padding:0in 0in 0in =
6.0pt;margin-left:4.8pt;margin-right:0in'><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>Good Evening,</span> =
<o:p></o:p></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>Thank-you for your advice <span =
class=3Dxxapple-converted-space>&nbsp;</span> <a =
href=3D"https://twitter.com/JeremyRubin" =
target=3D"_blank">@JeremyRubin</a> <span =
class=3Dxxapple-converted-space>&nbsp;</span>on the basis you advise, =
&quot;Taproot does not enable monero-like privacy features&quot;, I am =
prepred to withdraw my NACK notably that the existing feeatures of =
Bitcoin MUST be maintained, and whereby the UTXO of a transaction is =
identifiable, the PayTo Address, and the amount all without any =
obfuscation. <o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>Lightning does not really =
provide obfuscation, it provides a result of a subset of transactions =
although the operation of the channel is observable to the parties. =
<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>The =
reports I were reading concerning the supposed operation of Taproot =
published in a public media channel may have been speculation or =
misinformation nonetheless it is prudent to conditionally reply as you =
see that I have. It is important not to allow things to slip through the =
cracks. As you may believe may astute reviewers could make a full =
disclosure to this list it is not to be expected. =
<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>KING =
JAMES HRMH <o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>Great British Empire =
<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>Regards, =
<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>The Australian =
<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>LORD HIS EXCELLENCY JAMES HRMH =
(&amp; HMRH) <o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>of Hougun Manor &amp; Glencoe =
&amp; British Empire <o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>MR. Damian A. James Williamson =
<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>Wills <o:p></o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>et al. =
<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>&nbsp; =
<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>Willtech =
<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><span =
class=3DMsoHyperlink>www.willtech.com.au</span> <o:p></o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'><span =
class=3DMsoHyperlink>www.go-overt.com</span> <o:p></o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>and =
other projects <o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>&nbsp; <o:p></o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>earn.com/willtech =
<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>linkedin.com/in/damianwilliamson =
<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span style=3D'font-family:"Cantarell",serif'>m. =
0487135719 <o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'>f. +61261470192 =
<o:p></o:p></span></p><p class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-family:"Cantarell",serif'><o:p>&nbsp;</o:p></span></p><p =
class=3DMsoNormal><span =
style=3D'font-size:10.0pt;font-family:"Cantarell",serif'>This email does =
not constitute a general advice. Please disregard this email if =
misdelivered.</span> <o:p></o:p></p><div><div class=3DMsoNormal =
align=3Dcenter style=3D'text-align:center'><hr size=3D2 width=3D"98%" =
align=3Dcenter></div><div id=3D"x_x_divRplyFwdMsg"><p =
class=3DMsoNormal><b><span style=3D'color:black'>From:</span></b><span =
style=3D'color:black'> Jeremy &lt;<a =
href=3D"mailto:jlrubin@mit.edu">jlrubin@mit.edu</a>&gt;<br><b>Sent:</b> =
Sunday, 28 February 2021 3:14 AM<br><b>To:</b> LORD HIS EXCELLENCY JAMES =
HRMH &lt;<a =
href=3D"mailto:willtech@live.com.au">willtech@live.com.au</a>&gt;; =
Bitcoin Protocol Discussion &lt;<a =
href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org">bitcoin-dev@lists.l=
inuxfoundation.org</a>&gt;<br><b>Subject:</b> Re: [bitcoin-dev] Taproot =
NACK</span> <o:p></o:p></p><div><p class=3DMsoNormal>&nbsp; =
<o:p></o:p></p></div></div><div><div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;font-family:"Arial",sans-serif;color:black'>I =
have good news for you: Taproot does not enable monero-like privacy =
features any moreso than already exist in Bitcoin today. At its core, =
taproot is a way to make transactions with embedded smart contracts less =
expensive, done so in a manner that may marginally improve privacy =
dependent on user behavior (but not in the monero-like way you mention). =
For example, it makes it possible for lightning channels to look =
structurally similar to single key wallets, but it does nothing =
inherently to obfuscate the transaction graph as in monero. =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;font-family:"Arial",sans-serif;color:black'><o:=
p>&nbsp;</o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;font-family:"Arial",sans-serif;color:black'>Suc=
h &quot;monero-like&quot; transaction graph obfuscation may already =
exist in Bitcoin via other techniques (coinjoin, payjoin, coinswap, =
lightning, etc) with or without Taproot, so the point is further moot. =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;font-family:"Arial",sans-serif;color:black'><o:=
p>&nbsp;</o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;font-family:"Arial",sans-serif;color:black'>Do =
you have a source on your reporting? <o:p></o:p></span></p></div><div><p =
class=3DMsoNormal><span =
style=3D'font-size:12.0pt;font-family:"Arial",sans-serif;color:black'><o:=
p>&nbsp;</o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;font-family:"Arial",sans-serif;color:black'>You=
 may wish to rescind your nack. <br =
clear=3Dall><o:p></o:p></span></p></div><div><div><div><p =
class=3DMsoNormal><o:p>&nbsp;</o:p></p></div><div><p =
class=3DMsoNormal><o:p>&nbsp;</o:p></p></div><div><p =
class=3DMsoNormal>-- <br><a href=3D"https://twitter.com/JeremyRubin" =
target=3D"_blank">@JeremyRubin</a> <o:p></o:p></p></div></div></div><p =
class=3DMsoNormal><o:p>&nbsp;</o:p></p></div><p =
class=3DMsoNormal><o:p>&nbsp;</o:p></p><div><div><p class=3DMsoNormal>On =
Sat, Feb 27, 2021 at 5:46 AM LORD HIS EXCELLENCY JAMES HRMH via =
bitcoin-dev &lt; <a =
href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org">bitcoin-dev@lists.l=
inuxfoundation.org</a>&gt; wrote: <o:p></o:p></p></div><blockquote =
style=3D'border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in =
6.0pt;margin-left:4.8pt;margin-right:0in'><div><div><p =
class=3DMsoNormal><span style=3D'font-size:12.0pt;color:black'>Good =
Afternoon, <o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>It has been reported that Taproot =
will enable some Monero like features including the ability to hide =
transactions. <o:p></o:p></span></p></div><div><p =
class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>If that is the case I offer a =
full NACK and let me explain. <o:p></o:p></span></p></div><div><p =
class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span style=3D'font-size:12.0pt;color:black'>A =
part of the benefit of using Bitcoin is its honesty. The full =
transaction is published on the blockchain. If that were to change so =
that transactions may be obfuscated from scrutiny then any government =
would have unlimited impetus to ban Bitcoin, and speculation has that is =
the reason India has been reported to have banned cryptocurrencies =
already. <o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span style=3D'font-size:12.0pt;color:black'>I =
am in support of the expanded use case of Bitcoin without harming the =
established robust fairness and equal equity offered. The core =
functionality of Bitcoin, its values, must remain unaltered. =
<o:p></o:p></span></p></div><div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p><div><=
p class=3DMsoNormal><span style=3D'font-size:12.0pt;color:black'>KING =
JAMES HRMH <o:p></o:p></span></p></div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>Great British Empire =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div id=3D"x_x_x_gmail-m_4980216234097253335Signature"><div><div><div><p =
class=3DMsoNormal><span style=3D'font-size:12.0pt;color:black'>Regards, =
<o:p></o:p></span></p><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>The Australian =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>LORD HIS EXCELLENCY JAMES HRMH =
(&amp; HMRH) <o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>of Hougun Manor &amp; Glencoe =
&amp; British Empire <o:p></o:p></span></p></div><div><p =
class=3DMsoNormal><span style=3D'font-size:12.0pt;color:black'>MR. =
Damian A. James Williamson <o:p></o:p></span></p></div><div><p =
class=3DMsoNormal><span style=3D'font-size:12.0pt;color:black'>Wills =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>et al. =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>&nbsp; =
<o:p></o:p></span></p></div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>Willtech =
<o:p></o:p></span></p><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><a =
href=3D"http://www.willtech.com.au" =
target=3D"_blank">www.willtech.com.au</a> =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><a =
href=3D"http://www.go-overt.com" target=3D"_blank">www.go-overt.com</a> =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>and other projects =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>&nbsp; =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><a =
href=3D"http://earn.com/willtech" =
target=3D"_blank">earn.com/willtech</a> =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><a =
href=3D"http://linkedin.com/in/damianwilliamson" =
target=3D"_blank">linkedin.com/in/damianwilliamson</a> =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>m. 0487135719 =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'>f. +61261470192 =
<o:p></o:p></span></p></div><div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:12.0pt;color:black'><o:p>&nbsp;</o:p></span></p></div>=
<div><p class=3DMsoNormal><span =
style=3D'font-size:10.0pt;color:black'>This email does not constitute a =
general advice. Please disregard this email if misdelivered.</span><span =
style=3D'font-size:12.0pt;color:black'> =
<o:p></o:p></span></p></div></div></div></div></div></div></div><p =
class=3DMsoNormal>_______________________________________________ =
<br>bitcoin-dev mailing list <br><a =
href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" =
target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a> <br><a =
href=3D"https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev" =
target=3D"_blank">https://lists.linuxfoundation.org/mailman/listinfo/bitc=
oin-dev</a> =
<o:p></o:p></p></blockquote></div></div></div><pre>=C2=A0<o:p></o:p></pre=
><pre style=3D'text-align:center'><hr size=3D2 width=3D"100%" =
align=3Dcenter></pre><pre><br>bitcoin-dev mailing list<br><a =
href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org">bitcoin-dev@lists.l=
inuxfoundation.org</a><br><a =
href=3D"https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev">h=
ttps://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a><o:p></o=
:p></pre></blockquote></div></div></div><div><p =
class=3DMsoNormal>&lt;ip.bitcointalk.org.png&gt;<o:p></o:p></p></div><p =
class=3DMsoNormal>_______________________________________________<br>bitc=
oin-dev mailing list<br><a =
href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org">bitcoin-dev@lists.l=
inuxfoundation.org</a><br><a =
href=3D"https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev">h=
ttps://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a><o:p></o=
:p></p></div></blockquote></div></div></div></body></html>
------=_NextPart_000_00EF_01D70FE1.1329BE40--