summaryrefslogtreecommitdiff
path: root/ca/22df11f53aa1042f3984357b5fbea6425d5253
blob: 03198a3f03da0cabd8dcc9876e730b4fa7e306b4 (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
Return-Path: <fresheneesz@gmail.com>
Received: from smtp1.osuosl.org (smtp1.osuosl.org [IPv6:2605:bc80:3010::138])
 by lists.linuxfoundation.org (Postfix) with ESMTP id BEAB5C002D
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Sun,  8 May 2022 17:36:22 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
 by smtp1.osuosl.org (Postfix) with ESMTP id B676D819ED
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Sun,  8 May 2022 17:36:22 +0000 (UTC)
X-Virus-Scanned: amavisd-new at osuosl.org
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 tagged_above=-999 required=5
 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
 DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001,
 HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001,
 SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: smtp1.osuosl.org (amavisd-new);
 dkim=pass (2048-bit key) header.d=gmail.com
Received: from smtp1.osuosl.org ([127.0.0.1])
 by localhost (smtp1.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id JOGPY6Cj1UYB
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Sun,  8 May 2022 17:36:19 +0000 (UTC)
X-Greylist: whitelisted by SQLgrey-1.8.0
Received: from mail-pg1-x535.google.com (mail-pg1-x535.google.com
 [IPv6:2607:f8b0:4864:20::535])
 by smtp1.osuosl.org (Postfix) with ESMTPS id C329181947
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Sun,  8 May 2022 17:36:19 +0000 (UTC)
Received: by mail-pg1-x535.google.com with SMTP id 202so10203047pgc.9
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Sun, 08 May 2022 10:36:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112;
 h=mime-version:references:in-reply-to:from:date:message-id:subject:to
 :cc; bh=UkNQTR8/mjHxQRr4AWkOqpEHk8p8nE+fXIUqWyWPvcw=;
 b=hAbef8t4zLQP1BXlPbzxf/8CUDiXOkfLmeKKdhL++P4g7zVTKx66sx3JUUVd/7efWU
 gezf3NmKNLHaRXBumT6BczW2/dEI5NOkq0lGFo5mo1ZCCoadiH7cxVIh94Di2boIpHRI
 xTHHv7QgFFNslgZUFU5afxhlT1lUPDbCBB2es2EmwFsFctNROUbHKeMYUNaFs2L8Q7jC
 Mc6vPSYOL+HE1j5ES98XLDX6pqr6lIASV84ce1vdsMfb2UEHirrFDDujRdLkf2KNV5Qg
 A7iQvG6u/ee1gD0XJmObb1lSdR5YtbUgjzaw1AT8VGhAuKRUilMPNi8+3ptVhjYqMljw
 vjYQ==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20210112;
 h=x-gm-message-state:mime-version:references:in-reply-to:from:date
 :message-id:subject:to:cc;
 bh=UkNQTR8/mjHxQRr4AWkOqpEHk8p8nE+fXIUqWyWPvcw=;
 b=r+ZGBpmSyeXOjnmDiT/VUDmmqxrSuVo6C+ly+fonF36t/iCVo7FCu/JWaeKdy9EWHI
 r2A+YiIoEC1fgZP58RLrxUBvy4DEtJUzb0Uvm+gVvqU2HBCC762KM1QsyUw5Y5On8IHp
 /Uqi4B30QHlZi89fuw8FPGEOi3hOtj2FoV25burVus3Ml76Rqx63759tMHUyH29jE+tB
 yklbkoiyJHnsmCCcDFTqyG3dokNyvSYXbGqKWqVUU5cdEPFavoEBk30X4v2ndNVMqk8H
 XdWuVqUPJKmaE6f9DXWgQmA5QmsZrOc8XLlv8Y76a3fAGvg5Kz5uJWLyR46hhewWGZiu
 PXyA==
X-Gm-Message-State: AOAM533bHQvFLhy3w0eiiKhmrv7mcDQGYNdCZyJ6ag7xbDo1+jOtRrS3
 emRX+D4q4P+bR9H/uVVJY4Mb+JzPO3RUa7BF38A=
X-Google-Smtp-Source: ABdhPJylhAHNAgUMREzfhbYaiHMw5XqqLbq+llyIxJj/GAkTiCMtFhH7PFlIMH0+iPuQbKvnIYaOqMoVbWx048SoQpw=
X-Received: by 2002:a05:6a00:134f:b0:50e:10e0:ef82 with SMTP id
 k15-20020a056a00134f00b0050e10e0ef82mr12305436pfu.45.1652031378848; Sun, 08
 May 2022 10:36:18 -0700 (PDT)
MIME-Version: 1.0
References: <mailman.51682.1651459425.8511.bitcoin-dev@lists.linuxfoundation.org>
 <CAHTn92z3HaTu47O_3metXAhFEVN3QnLdug1BVt66a9GZGx6t=Q@mail.gmail.com>
 <PS2P216MB1089155348699F63A49A9D9D9DC39@PS2P216MB1089.KORP216.PROD.OUTLOOK.COM>
In-Reply-To: <PS2P216MB1089155348699F63A49A9D9D9DC39@PS2P216MB1089.KORP216.PROD.OUTLOOK.COM>
From: Billy Tetrud <billy.tetrud@gmail.com>
Date: Sun, 8 May 2022 12:36:01 -0500
Message-ID: <CAGpPWDbtVzbrH=ovLSpT66v65QThV04Ufmfm2WTn15dc64gcng@mail.gmail.com>
To: LORD HIS EXCELLENCY JAMES HRMH <willtech@live.com.au>
Content-Type: multipart/alternative; boundary="0000000000007e7ea405de838737"
X-Mailman-Approved-At: Sun, 08 May 2022 17:40:13 +0000
Cc: "bitcoin-dev@lists.linuxfoundation.org"
 <bitcoin-dev@lists.linuxfoundation.org>, John Carvalho <john@synonym.to>
Subject: Re: [bitcoin-dev] Working Towards Consensus
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: Sun, 08 May 2022 17:36:22 -0000

--0000000000007e7ea405de838737
Content-Type: text/plain; charset="UTF-8"

>  it is easier to get everyone to agree when everyone has something to gain

That's unquestionably true. It doesn't really sound like what you said
originally tho.

> most users are either apathetic or trusting in the developers that
initiated it being activated. This is a dangerous dynamic to lean on

I don't disagree.

> I do not "expect" improvement by any other means than is typical in life:
competition and adaptation in response to an adverse and changing
environment.
> Why are you talking about companies and bloat while I am speaking about
being conservative?

Sounds like we agree then. However, when you said "when [designers]
speculate and lead the process, they create problems instead" I took that
to mean that you think designers shouldn't lead the process. I think
designers and engineers should lead the process, as you said, "[when] their
specialization allows them to solve a problem faster than someone else
might."

> thinking that adding complication to Bitcoin's base layer is somehow a
means of valuing simplicity

You seem to be missing my point. I am certainly not saying the words you're
putting in my mouth there. What I am saying is that a number of people have
been calling covenants for a number of years before Jeremy created CTV, and
all discussed proposals were more powerful and complex than CTV. I do think
that the design of CTV had a goal of simplicity, and I believe it achieved
that goal. If CTV were not proposed and developed, we would very likely
have seen a more complex covenant opcode on the table. I certainly would
like to see a more powerful covenant opcode myself.

> I have no reason to care about your "99%" confidence in something

I'm not asking you to care about my confidence. I'm asking to consider my
logic. Feel free to take any claims about my confidence as an aside.

> Speaking for myself, and likely the great majority of the market

... are you trying to speak for yourself, or are you trying to assert that
your opinion is the market majority opinion? If I may echo your opinion of
me, I have no reason to care about your confidence that your opinion is
everyone else's opinion as well. I'll take that as an aside ; )

> Your self-ascribed ability to assess the market is objectively
overconfident

I'm not the one claiming to speak for the market ^ I'm only relaying the
fact that the vast majority of folks I see on the dev mailing list who talk
about covenants, even occasionally, are in support of them generally, and
it seems the majority of those people who generally support covenants, if
not the vast majority, support CTV. That's what I see. Feel free to not
believe me, but the dev mailing list records are all there for you to
verify.

> That cost [of a change to bitcoin] is only offset AFTER the feature has
reached saturation of usage.

I think that's objectively false. Were it true, it would mean that every
change can only at best reach break-even, which would mean that no change
is worth doing.

> we might be too aggressive in our pace of feature speculation
> If we keep piling on features...
> Complexity can yield centralization, we should be more careful.

Are you in the "ossification now" camp, John? Or perhaps, ossification
soon? I agree that the bar of quality should continually be raised for
making changes to bitcoin, and ossification (or as near as possible) should
be the eventual goal. Perhaps we just disagree on how quickly to raise the
bar.

> However many people in the world that may want CTV, that number is surely
less than 1% of the Bitcoin user base.

I don't disagree that 1% isn't an unlikely number for the fraction of
bitcoin users who currently want specifically CTV. However, I would guess
the percentage of users who hold something close to your opinion isn't much
different from that number. Measuring things like this as a percentage of
the total bitcoin userbase is kind of worthless.

> Cry harder.
> your being offended is not important to this topic

Perhaps not, but its still no reason to act like an asshole, John. If you
think personal attacks, childish jeers, and angry dismissals will be
convincing to people who read this mailing list, you're sorely mistaken.




On Wed, May 4, 2022 at 8:01 AM LORD HIS EXCELLENCY JAMES HRMH <
willtech@live.com.au> wrote:

> Good Afternoon,
>
> The basic principle of Bitcoin is operating the consensus fungibility. All
> transactions are published on the public ledger. What is valuable is the
> consensus as we have it, not what it may become from some proposal that may
> harm fungibility. Without consensus Bitcoin is not what is valued by the
> current consensus. Consensus is exactly why Bitcoin is fungible if that can
> be made clear. That is why it is important to defend consensus.  We have
> agreed Bitcoin has certain properties including being immutable,
> transparent, published, distributed, trustless. Consensus provides we make
> software to allow transfer of Bitcoin via ownership of a UTXO in a manner
> in accordance with consensus. If we do not value Bitcoin to defend the
> consensus we admin all kinds of features without purpose to complicate the
> operation of a wallet for a standard user. Bitcoin and the consensus is all
> about the standard user in order to be fungible. A valuable use-case does
> not approve an enhancement. Most users will never be involved in the
> consensus process and in the interest of  being fungible all developers and
> the consensus must ensure their interest in a wallet being upgraded is in
> their beneficial interest. Making a fidget toy that can do anything is not
> useful until it can make the bed, cook breakfast, and pour the coffee, that
> is, to do something useful that a user will want.
>
> One test of this is how many users will object if a feature is taken away.
>
> KING JAMES HRMH
> Great British Empire
>
> Regards,
> The Australian
> LORD HIS EXCELLENCY JAMES HRMH (& HMRH)
> of Hougun Manor & Glencoe & British Empire
> MR. Damian A. James Williamson
> Wills
>
> et al.
>
>
> Willtech
> www.willtech.com.au
> www.go-overt.com
> and other projects
>
> earn.com/willtech
> linkedin.com/in/damianwilliamson
>
>
> m. 0487135719
> f. +61261470192
>
>
> This email does not constitute a general advice. Please disregard this
> email if misdelivered.
> ------------------------------
> *From:* bitcoin-dev <bitcoin-dev-bounces@lists.linuxfoundation.org> on
> behalf of John Carvalho via bitcoin-dev <
> bitcoin-dev@lists.linuxfoundation.org>
> *Sent:* Monday, 2 May 2022 6:37 PM
> *To:* bitcoin-dev@lists.linuxfoundation.org <
> bitcoin-dev@lists.linuxfoundation.org>
> *Subject:* Re: [bitcoin-dev] Working Towards Consensus
>
> Jeremy,
>
> The path to consensus is to propose things that everyone needs. Demand
> comes from the market, not the designers.
>
> Designers (engineers) solve problems with designs, but when they speculate
> and lead the process, they create problems instead. Bitcoin is not a place
> for speculative feature additions. Bitcoin cannot afford a culture of
> additive features no one is asking for. Bitcoin thrives in a culture of
> "NO." Rejection of change is Bitcoin's primary feature.
>
> There is NO HOPE of EVER getting the majority of Bitcoin users to be able
> to grasp, audit, and meaningfully consent to complicated new features, nor
> to assess how they may interact with existing features in undesirable ways
> or affect Bitcoin's incentive structure. To ignore this is a selfish
> egomania that too many devs succumb to. The public already trusts Core devs
> more than they probably should, and it is unwise to lean on that trust.
>
> You are of course welcome to try and research and document all of the
> details about how this plays out in practice, but you will fail to specify
> a path to approval or any sort of clear governance structure for ensuring
> that speculative features get into Bitcoin. You will seek and only see a
> bias that allows you to get what YOU want. Until you focus on what everyone
> wants, you will not reach consensus on anything.
>
> Bitcoin changes should solve obvious problems and provide easy wins on
> optimization, security, and privacy. Seek simplicity and efficiency, not
> complication.
>
> We have yet to saturate usage of the features we have added already in the
> past 5 years. Use those. It is becoming apparent over time that many
> features can be accomplished off-chain, or without a blockchain, or by
> merely anchoring into currently available bitcoin transaction types.
>
> There is simply no urgency or problem that any of the proposed soft fork
> features are trying to address. This includes APO, CTV, sidechain
> proposals, etc, etc.
>
> Your aggression to your purpose is the antithesis of consensus, as it
> indicates your incentives are external to it.
>
> --
> John Carvalho
> CEO, Synonym.to <http://synonym.to/>
>
>
> On Mon, May 2, 2022 at 3:43 AM <
> bitcoin-dev-request@lists.linuxfoundation.org> wrote:
>
> Send bitcoin-dev mailing list submissions to
>         bitcoin-dev@lists.linuxfoundation.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
> or, via email, send a message with subject or body 'help' to
>         bitcoin-dev-request@lists.linuxfoundation.org
>
> You can reach the person managing the list at
>         bitcoin-dev-owner@lists.linuxfoundation.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of bitcoin-dev digest..."
>
>
> Today's Topics:
>
>    1. Re: What to do when contentious soft fork activations are
>       attempted (Billy Tetrud)
>    2. Working Towards Consensus (Jeremy Rubin)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Sun, 1 May 2022 14:14:29 -0500
> From: Billy Tetrud <billy.tetrud@gmail.com>
> To: alicexbt <alicexbt@protonmail.com>,  Bitcoin Protocol Discussion
>         <bitcoin-dev@lists.linuxfoundation.org>
> Subject: Re: [bitcoin-dev] What to do when contentious soft fork
>         activations are attempted
> Message-ID:
>         <
> CAGpPWDb-T4OB0NKv7O5k9yhDQJtmag1QLqM1jJN9fQMoNTPLug@mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> +1 alicexbt
>
> We of course want knowledgeable bitcoiners who aren't knowledgeable about a
> certain proposal to be skeptical. But what we don't want is for that
> natural skepticism-from-ignorance to be interpreted as opposition, or
> really a strong signal of any kind. Any thoughts from ignorance, whether
> self-aware or not, should be given small weight. It seems the vast majority
> of push back has been this kind of skepticism from ignorance. And to a
> certain degree I think we want to give time for understanding to those who
> have not participated in the first, second, third, etc round of discussion
> on a proposal. It may not be reasonable to say "you had the last 2 years of
> time to voice your concern".
>
> Now that CTV is being taken seriously as a proposal, we probably should
> give the community who is finally taking a serious look at it time to
> understand, get their questions answered, and come to terms with it. This
> is not to say that CTV as a technology or proposal has been rushed, or has
> not had enough work put into it, but rather that the community as a whole
> has not paid enough attention to it for long enough.
>
> The wrong approach is: "how do I yell more loudly next time I see something
> I'm uncomfortable with?" The right approach is to educate those who aren't
> educated on the proposal and gather consensus on what people think when
> they understand enough about it to contribute to that consensus. If you
> care about consensus, you should respect the consensus process and be ok
> with consensus being not your preferred outcome. If you don't care about
> consensus, then you're basically attacking the bitcoin community.
>
> On Sun, May 1, 2022 at 3:22 AM alicexbt via bitcoin-dev <
> bitcoin-dev@lists.linuxfoundation.org> wrote:
>
> > Hi Michael,
> >
> > Maybe the whole thing worked as designed. Some users identified what was
> > going on, well known Bitcoin educators such as Andreas Antonopoulos,
> Jimmy
> > Song etc brought additional attention to the dangers, a URSF movement
> > started to gain momentum and those attempting a contentious soft fork
> > activation backed off. (Disappointingly Bitcoin Optech didn't cover my
> > previous posts to this mailing list 1
> > <
> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-October/019535.html
> >,
> > 2
> > <
> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2022-January/019728.html
> >,
> > 3
> > <
> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2022-April/020235.html
> >
> > highlighting the dangers many months ago or recent posts. Normally Optech
> > is very high signal.)
> >
> >
> > Some users have been misled and there is nothing great being achieved by
> > doing this on social media. Andreas is clueless about BIP 119 and other
> > covenant proposals. He is spreading misinformation and some of the URSF
> > enthusiasts do not understand what are they even opposing or going to run
> > with risks involved.
> >
> >
> > Answering the subject of this email: "What to do when contentious soft
> > forks activations are attempted?"
> >
> > - Do not consider something contentious because someone said it on
> mailing
> > list
> > - Do not spread misinformation
> > - Read all posts in detail with different opinions
> > - Avoid personal attacks
> > - Look at the technical details, code etc. and comment on things that
> > could be improved
> >
> >
> >
> > /dev/fd0
> >
> > Sent with ProtonMail <https://protonmail.com/> secure email.
> >
> > ------- Original Message -------
> > On Saturday, April 30th, 2022 at 3:23 PM, Michael Folkson via bitcoin-dev
> > bitcoin-dev@lists.linuxfoundation.org wrote:
> >
> >
> > I?ve been in two minds on whether to completely move on to other topics
> or
> > to formulate some thoughts on the recent attempt to activate a
> contentious
> > soft fork. In the interests of those of us who have wasted
> > days/weeks/months of our time on this (with no personal upside) and who
> > don?t want to repeat this exercise again I thought I should at least
> raise
> > the issue for discussion of what should be done differently if this is
> > tried again in future.
> >
> > This could be Jeremy with OP_CTV at a later point (assuming it is still
> > contentious) or anyone who wants to pick up a single opcode that is not
> yet
> > activated on Bitcoin and try to get miners to signal for it bypassing
> > technical concerns from many developers, bypassing Bitcoin Core and
> > bypassing users.
> >
> > Maybe the whole thing worked as designed. Some users identified what was
> > going on, well known Bitcoin educators such as Andreas Antonopoulos,
> Jimmy
> > Song etc brought additional attention to the dangers, a URSF movement
> > started to gain momentum and those attempting a contentious soft fork
> > activation backed off. (Disappointingly Bitcoin Optech didn't cover my
> > previous posts to this mailing list 1
> > <
> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-October/019535.html
> >,
> > 2
> > <
> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2022-January/019728.html
> >,
> > 3
> > <
> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2022-April/020235.html
> >
> > highlighting the dangers many months ago or recent posts. Normally Optech
> > is very high signal.)
> >
> > Alternatively this was the first time a contentious soft fork activation
> > was attempted, we were all woefully unprepared for it and none of us knew
> > what we were doing.
> >
> > I?m unsure on the above. I?d be interested to hear thoughts. What I am
> > sure of is that it is totally unacceptable for one individual to bring
> the
> > entire Bitcoin network to the brink of a chain split. There has to be a
> > personal cost to that individual dissuading them from trying it again
> > otherwise they?re motivated to try it again every week/month. Perhaps the
> > personal cost that the community is now prepared if that individual tries
> > it again is sufficient. I?m not sure. Obviously Bitcoin is a
> permissionless
> > network, Bitcoin Core and other open source projects are easily forked
> and
> > no authority (I?m certainly no authority) can stop things like this
> > happening again.
> >
> > I?ll follow the responses if people have thoughts (I won't be responding
> > to the instigators of this contentious soft fork activation attempt) but
> > other than that I?d like to move on to other things than contentious soft
> > fork activations. Thanks to those who have expressed concerns publicly
> (too
> > many to name, Bob McElrath was often wording arguments better than I
> could)
> > and who were willing to engage with the URSF conversation. If an
> individual
> > can go directly to miners to get soft forks activated bypassing technical
> > concerns from many developers, bypassing Bitcoin Core and bypassing users
> > Bitcoin is fundamentally broken. The reason I still have hope that it
> isn't
> > is that during a period of general apathy some people were willing to
> stand
> > up and actively resist it.
> >
> > --
> > Michael Folkson
> > Email: michaelfolkson at protonmail.com
> > Keybase: michaelfolkson
> > PGP: 43ED C999 9F85 1D40 EAF4 9835 92D6 0159 214C FEE3
> >
> > _______________________________________________
> > bitcoin-dev mailing list
> > bitcoin-dev@lists.linuxfoundation.org
> > https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
> >
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20220501/7158d8ed/attachment-0001.html
> >
>
> ------------------------------
>
> Message: 2
> Date: Sun, 1 May 2022 19:43:29 -0700
> From: Jeremy Rubin <jeremy.l.rubin@gmail.com>
> To: Bitcoin development mailing list
>         <bitcoin-dev@lists.linuxfoundation.org>
> Subject: [bitcoin-dev] Working Towards Consensus
> Message-ID:
>         <CAD5xwhhdEgADWwLwbjRKp-UFCw9hHjDsc-L=pkiwW=
> bmhFqBNw@mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> Developers,
>
> There is much to say about the events of the last two weeks and the
> response to them. I've been searching for the right words to share here,
> but I think it best that short of a more thoughtful writeup I start with a
> timely small step with the below comments.
>
> First, let me be clear: I am not advancing a Speedy Trial(ST) activation of
> Bitcoin Improvement Proposal-119 (BIP-119) CheckTemplateVerify (CTV) at
> this time.
>
> I'm skipping any discussion of the drama here. Most of you are interested
> in developing Bitcoin, not drama. Let's try to keep this thread focused on
> the actual work. I'll make some limited comments on the drama in a separate
> thread, for those who care to hear from me on the subject directly.
>
> I believe that the disinformation spread around my post ("7 Theses on a
> next step for BIP-119"[0]) created three main negative outcomes within the
> Bitcoin community:
>
> 1. Confusion about how Bitcoin's "technical consensus" works and how
> changes are "approved".
> 2. Fear about the safety of CTV and covenants more broadly.
> 3. Misunderstandings around the properties of Speedy Trial, User Activated
> Soft Fork (UASF), User Resisted Soft Fork (URSF), Soft Forks, Hard Forks,
> and more.
>
> While I cannot take responsibility for the spread of the disinformation, I
> do apologize to anyone dealing with it for the role my actions have had in
> leading to the current circumstance.
>
> I personally take some solace in knowing that the only way out of this is
> through it. The conversations happening now seem to have been more or less
> inevitable, this has brought them to the surface, and as a technical
> community we are able to address them head on if -- as individuals and
> collectively -- we choose to. And, viewed through a certain lens, these
> conversations represent incredibly important opportunities to participate
> in defining the future of Bitcoin that would not be happening otherwise.
> Ultimately, I am grateful to live in a time where I am able to play a small
> role in such an important process. This is the work.
>
> In the coming months, I expect the discourse to be messy, but I think the
> work is clear cut that we should undertake at least the following:
>
> 1. Make great efforts to better document how Bitcoin's technical consensus
> process works today, how it can be improved, and how changes may be
> formally reviewed while still being unofficially advanced.
> 2. Work diligently to address the concerns many in the community have
> around the negative potential of covenants and better explain the
> trade-offs between levels of functionality.
> 3. Renew conversations about activation and release mechanisms and
> re-examine our priors around why Speedy Trial may have been acceptable for
> Taproot, was not acceptable for BIP-119, but may not be optimal long
> term[1], and work towards processes that better captures the Bitcoin
> network's diverse interests and requirements.
> 4. Work towards thoroughly systematizing knowledge around covenant
> technologies so that in the coming months we may work towards delivering a
> coherent pathway for the Bitcoin technical community to evaluate and put up
> for offer to the broader community an upgrade or set of upgrades to improve
> Bitcoin's capabilities for self sovereignty, privacy, scalability, and
> decentralization.
>
> This may not be the easiest path to take, but I believe that this work is
> critical to the future of Bitcoin. I welcome all reading this to share your
> thoughts with this list on how we might work towards consensus going
> forward, including any criticisms of my observations and recommendations
> above. While I would expect nothing less than passionate debate when it
> comes to Bitcoin, remember that at the end of the day we all largely share
> a mission to make the world a freer place, even if we disagree about how we
> get there.
>
> Yours truly,
>
> Jeremy
>
> [0]: https://rubin.io/bitcoin/2022/04/17/next-steps-bip119/
> [1]: http://r6.ca/blog/20210615T191422Z.html I quite enjoyed Roconnor's
> detailed post on Speedy Trial
>
> --
> @JeremyRubin <https://twitter.com/JeremyRubin>
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20220501/9009e65d/attachment.html
> >
>
> ------------------------------
>
> Subject: Digest Footer
>
> _______________________________________________
> bitcoin-dev mailing list
> bitcoin-dev@lists.linuxfoundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
>
>
> ------------------------------
>
> End of bitcoin-dev Digest, Vol 84, Issue 4
> ******************************************
>
>

--0000000000007e7ea405de838737
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">&gt;

=C2=A0it is easier to get everyone to agree when everyone has something to =
gain<div><br></div><div>That&#39;s unquestionably true. It doesn&#39;t real=
ly sound like what you said originally tho.</div><div><br></div><div>&gt; m=
ost users are either apathetic or trusting in the developers that initiated=
 it being activated. This is a dangerous dynamic to lean on</div><div><br><=
/div><div>I don&#39;t disagree.</div><div><br></div><div>&gt; I do not &quo=
t;expect&quot; improvement by any other means than is typical in life: comp=
etition and adaptation in response to an adverse and changing environment.<=
/div><div>&gt; Why are you talking about companies and bloat while I am spe=
aking about being conservative?=C2=A0</div><div><br></div><div>Sounds like =
we agree then. However, when you said &quot;<span style=3D"color:rgb(80,0,8=
0)">when [designers] speculate and lead the=C2=A0process, they create probl=
ems instead</span>&quot; I took that to mean that you think designers shoul=
dn&#39;t lead the process. I think designers and engineers should lead the =
process, as you said, &quot;<font color=3D"#741b47">[when] their specializa=
tion allows them to solve a problem faster than someone else might.</font>&=
quot;</div><div><br></div><div>&gt; thinking that adding complication to Bi=
tcoin&#39;s base layer is somehow a means of valuing simplicity</div><div><=
br></div><div>You seem to be missing my point. I am certainly not saying th=
e words you&#39;re putting in my mouth there. What I am saying is that a nu=
mber of people have been calling covenants for a number of years before Jer=
emy created CTV, and all discussed proposals were more powerful and complex=
 than CTV. I do think that the design of CTV had a goal of simplicity, and =
I believe it achieved that goal. If CTV were not proposed and developed, we=
 would very likely have seen a more complex covenant opcode on the table. I=
 certainly would like to see a more powerful covenant opcode myself.</div><=
div><br></div><div>&gt; I have no reason to care about your &quot;99%&quot;=
 confidence in something</div><div><br></div><div>I&#39;m not asking you to=
 care about my confidence. I&#39;m asking to consider my logic. Feel free t=
o take any claims about my confidence as an aside.=C2=A0</div><div><br></di=
v><div>&gt; Speaking for myself, and likely the great majority of the marke=
t</div><div><br></div><div>... are you trying to speak for yourself, or are=
 you trying to assert that your opinion is the market majority opinion? If =
I may echo your opinion of me, I have no reason to care about your confiden=
ce that your opinion is everyone else&#39;s opinion as well. I&#39;ll take =
that as an aside ; )</div><div><br></div><div>&gt; Your self-ascribed abili=
ty to assess the market is objectively overconfident</div><div><br></div><d=
iv>I&#39;m not the one claiming to speak for the market ^ I&#39;m only rela=
ying the fact that the vast majority of folks I see on the dev mailing list=
 who talk about covenants, even occasionally, are in support of them genera=
lly, and it seems the majority of those people who generally support covena=
nts, if not the vast majority, support CTV. That&#39;s what I see. Feel fre=
e to not believe me, but the dev mailing list records are all there for you=
 to verify.</div><div><br></div><div>&gt; That cost [of a change to bitcoin=
] is only offset AFTER the feature has reached saturation of usage.</div><d=
iv><br></div><div>I think that&#39;s objectively false. Were it true, it wo=
uld mean that every change can only at best reach break-even, which would m=
ean that no change is worth doing.=C2=A0</div><div><br></div><div>&gt; we m=
ight be too aggressive in our pace of feature speculation</div><div>&gt; If=
 we keep piling on features...</div><div>&gt; Complexity can yield centrali=
zation, we should be more careful.</div><div><br></div><div>Are you in the =
&quot;ossification now&quot; camp, John? Or perhaps, ossification soon? I a=
gree that the bar of quality should continually be raised for making change=
s to bitcoin, and ossification (or as near as possible) should be the event=
ual goal. Perhaps we just disagree on how quickly to raise the bar.=C2=A0</=
div><div><br></div><div>&gt; However many people in the world that may want=
 CTV, that number is surely less than 1% of the Bitcoin user base.=C2=A0</d=
iv><div><br></div><div>I don&#39;t disagree that 1% isn&#39;t an unlikely n=
umber for the fraction of bitcoin users who currently want specifically CTV=
. However, I would guess the percentage of users who hold something close t=
o your opinion isn&#39;t much different from that number. Measuring things =
like this as a percentage of the total bitcoin userbase is kind of worthles=
s.=C2=A0</div><div><br></div><div>&gt; Cry harder.=C2=A0</div><div>&gt; you=
r being offended is not important to this topic</div><div><br></div><div>Pe=
rhaps not, but its still no reason to act like an asshole, John. If you thi=
nk personal attacks, childish jeers, and angry dismissals will be convincin=
g to people who read this mailing list, you&#39;re sorely mistaken.=C2=A0</=
div><div><br></div><div><br></div><div><br></div></div><br><div class=3D"gm=
ail_quote"><div dir=3D"ltr" class=3D"gmail_attr">On Wed, May 4, 2022 at 8:0=
1 AM LORD HIS EXCELLENCY JAMES HRMH &lt;<a href=3D"mailto:willtech@live.com=
.au" target=3D"_blank">willtech@live.com.au</a>&gt; wrote:<br></div><blockq=
uote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1p=
x solid rgb(204,204,204);padding-left:1ex">




<div dir=3D"ltr">
<div style=3D"font-family:Calibri,Helvetica,sans-serif;font-size:12pt;color=
:rgb(0,0,0)">
</div>
Good Afternoon,
<div><br>
</div>
<div>The basic principle of Bitcoin is operating the consensus fungibility.=
 All transactions are published on the public ledger. What is valuable is t=
he consensus as we have it, not what it may become from some proposal that =
may harm
 fungibility. Without consensus Bitcoin is not what is valued by the curren=
t consensus. Consensus is exactly why Bitcoin is fungible if that can be ma=
de clear. That is why it is important to defend consensus.=C2=A0 We have ag=
reed Bitcoin has certain properties including
 being immutable, transparent, published, distributed, trustless. Consensus=
 provides we make software to allow transfer of Bitcoin via ownership of a =
UTXO in a manner in accordance with consensus. If we do not value Bitcoin t=
o defend the consensus we admin
 all kinds of features without purpose to complicate the operation of a wal=
let for a standard user. Bitcoin and the consensus is all about the standar=
d user in order to be fungible. A valuable use-case does not approve an enh=
ancement. Most users will never
 be involved in the consensus process and in the interest of=C2=A0 being fu=
ngible all developers and the consensus must ensure their interest in a wal=
let being upgraded is in their beneficial interest. Making a fidget toy tha=
t can do anything is not useful until
 it can make the bed, cook breakfast, and pour the coffee, that is, to do s=
omething useful that a user will want.
<br>
</div>
<div><br>
</div>
<div>One test of this is how many users will object if a feature is taken a=
way.<br>
</div>
<div><br>
</div>
<div>KING JAMES HRMH</div>
<div>Great British Empire</div>
<div><br>
</div>
<div>Regards,</div>
<div>The Australian</div>
<div>LORD HIS EXCELLENCY JAMES HRMH (&amp; HMRH)</div>
<div>of Hougun Manor &amp; Glencoe &amp; British Empire</div>
<div>MR. Damian A. James Williamson</div>
<div>Wills</div>
<div><br>
</div>
<div>et al.</div>
<div><br>
</div>
<div>=C2=A0</div>
<div>Willtech</div>
<div><a href=3D"http://www.willtech.com.au" target=3D"_blank">www.willtech.=
com.au</a></div>
<div><a href=3D"http://www.go-overt.com" target=3D"_blank">www.go-overt.com=
</a></div>
<div>and other projects</div>
<div>=C2=A0</div>
<div><a href=3D"http://earn.com/willtech" target=3D"_blank">earn.com/willte=
ch</a></div>
<div><a href=3D"http://linkedin.com/in/damianwilliamson" target=3D"_blank">=
linkedin.com/in/damianwilliamson</a></div>
<div><br>
</div>
<div><br>
</div>
<div>m. 0487135719</div>
<div>f. +61261470192</div>
<div><br>
</div>
<div><br>
</div>
This email does not constitute a general advice. Please disregard this emai=
l if misdelivered.
<hr style=3D"display:inline-block;width:98%">
<div id=3D"gmail-m_2108380197847303829gmail-m_8796469004127637265divRplyFwd=
Msg" dir=3D"ltr"><font style=3D"font-size:11pt" face=3D"Calibri, sans-serif=
" color=3D"#000000"><b>From:</b> bitcoin-dev &lt;<a href=3D"mailto:bitcoin-=
dev-bounces@lists.linuxfoundation.org" target=3D"_blank">bitcoin-dev-bounce=
s@lists.linuxfoundation.org</a>&gt; on behalf of John Carvalho via bitcoin-=
dev &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"=
_blank">bitcoin-dev@lists.linuxfoundation.org</a>&gt;<br>
<b>Sent:</b> Monday, 2 May 2022 6:37 PM<br>
<b>To:</b> <a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=
=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a> &lt;<a href=3D"mailto=
:bitcoin-dev@lists.linuxfoundation.org" target=3D"_blank">bitcoin-dev@lists=
.linuxfoundation.org</a>&gt;<br>
<b>Subject:</b> Re: [bitcoin-dev] Working Towards Consensus</font>
<div>=C2=A0</div>
</div>
<div>
<div dir=3D"ltr">
<div dir=3D"ltr">Jeremy,</div>
<div dir=3D"ltr"><br>
</div>
<div dir=3D"ltr">The path to consensus is to propose things that everyone n=
eeds. Demand comes from the market, not the designers.=C2=A0</div>
<div dir=3D"ltr"><br>
</div>
<div dir=3D"ltr">Designers (engineers) solve problems with designs, but whe=
n they speculate and lead the=C2=A0process, they create problems instead. B=
itcoin is not a place for speculative feature additions. Bitcoin cannot aff=
ord a culture of additive features no one
 is asking for. Bitcoin thrives in a culture of &quot;NO.&quot; Rejection o=
f change is Bitcoin&#39;s primary feature.</div>
<div dir=3D"ltr"><br>
</div>
<div>There is NO HOPE of EVER getting=C2=A0the majority of Bitcoin users to=
 be able to grasp, audit, and meaningfully consent to complicated new featu=
res, nor to assess=C2=A0how they may interact with existing features in und=
esirable ways or affect Bitcoin&#39;s incentive
 structure. To ignore this is a selfish egomania that too many devs succumb=
 to. The public already trusts Core devs more than they probably should, an=
d it is unwise to lean on that trust.</div>
<div dir=3D"ltr"><br>
</div>
<div>You are of course welcome to try and research and document all of the =
details about how this plays out in practice, but you will fail to specify =
a path to approval or any sort of clear governance structure for ensuring t=
hat speculative features get into
 Bitcoin. You will seek and only see a bias that allows you to get what YOU=
 want. Until you focus=C2=A0on what everyone wants, you will not reach cons=
ensus on anything.</div>
<div><br>
</div>
<div>Bitcoin changes should=C2=A0solve obvious problems=C2=A0and provide ea=
sy wins on optimization, security, and privacy. Seek simplicity and efficie=
ncy, not complication.</div>
<div><br>
</div>
<div>We have yet to saturate usage of the features we have added already in=
 the past 5 years. Use those. It is becoming apparent over time that many f=
eatures can be accomplished off-chain, or without a blockchain, or by merel=
y anchoring into currently available
 bitcoin transaction types.</div>
<div><br>
</div>
<div>There is simply no urgency or problem that any of the proposed soft fo=
rk features are trying to address. This includes APO, CTV, sidechain propos=
als, etc, etc.</div>
<div><br>
</div>
<div>Your aggression to your purpose is the antithesis of consensus, as it =
indicates your incentives are external to it.</div>
<div dir=3D"ltr"><br clear=3D"all">
<div>
<div dir=3D"ltr">
<div dir=3D"ltr"><span style=3D"color:rgb(34,34,34)">--</span><br style=3D"=
color:rgb(34,34,34)">
<div dir=3D"ltr" style=3D"color:rgb(34,34,34)">
<div dir=3D"ltr">John Carvalho</div>
<div dir=3D"ltr">CEO,=C2=A0<a href=3D"http://synonym.to/" style=3D"color:rg=
b(17,85,204)" target=3D"_blank">Synonym.to</a><br>
<div><font size=3D"1"><br>
</font></div>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<div>
<div dir=3D"ltr">On Mon, May 2, 2022 at 3:43 AM &lt;<a href=3D"mailto:bitco=
in-dev-request@lists.linuxfoundation.org" target=3D"_blank">bitcoin-dev-req=
uest@lists.linuxfoundation.org</a>&gt; wrote:<br>
</div>
<blockquote style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204=
,204,204);padding-left:1ex">
Send bitcoin-dev mailing list submissions to<br>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"mailto:bitcoin-dev@lists.linuxfounda=
tion.org" target=3D"_blank">
bitcoin-dev@lists.linuxfoundation.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://lists.linuxfoundation.org/ma=
ilman/listinfo/bitcoin-dev" target=3D"_blank">
https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"mailto:bitcoin-dev-request@lists.lin=
uxfoundation.org" target=3D"_blank">
bitcoin-dev-request@lists.linuxfoundation.org</a><br>
<br>
You can reach the person managing the list at<br>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"mailto:bitcoin-dev-owner@lists.linux=
foundation.org" target=3D"_blank">
bitcoin-dev-owner@lists.linuxfoundation.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of bitcoin-dev digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
=C2=A0 =C2=A01. Re: What to do when contentious soft fork activations are<b=
r>
=C2=A0 =C2=A0 =C2=A0 attempted (Billy Tetrud)<br>
=C2=A0 =C2=A02. Working Towards Consensus (Jeremy Rubin)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Sun, 1 May 2022 14:14:29 -0500<br>
From: Billy Tetrud &lt;<a href=3D"mailto:billy.tetrud@gmail.com" target=3D"=
_blank">billy.tetrud@gmail.com</a>&gt;<br>
<div>To: alicexbt &lt;<a href=3D"mailto:alicexbt@protonmail.com" target=3D"=
_blank">alicexbt@protonmail.com</a>&gt;,=C2=A0 Bitcoin Protocol Discussion<=
br>
</div>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfo=
undation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a>&g=
t;<br>
Subject: Re: [bitcoin-dev] What to do when contentious soft fork<br>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 activations are attempted<br>
Message-ID:<br>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 &lt;<a href=3D"mailto:CAGpPWDb-T4OB0NKv7O5k9yhD=
QJtmag1QLqM1jJN9fQMoNTPLug@mail.gmail.com" target=3D"_blank">CAGpPWDb-T4OB0=
NKv7O5k9yhDQJtmag1QLqM1jJN9fQMoNTPLug@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=3D&quot;utf-8&quot;<br>
<br>
+1 alicexbt<br>
<br>
We of course want knowledgeable bitcoiners who aren&#39;t knowledgeable abo=
ut a<br>
certain proposal to be skeptical. But what we don&#39;t want is for that<br=
>
natural skepticism-from-ignorance to be interpreted as opposition, or<br>
really a strong signal of any kind. Any thoughts from ignorance, whether<br=
>
self-aware or not, should be given small weight. It seems the vast majority=
<br>
of push back has been this kind of skepticism from ignorance. And to a<br>
certain degree I think we want to give time for understanding to those who<=
br>
have not participated in the first, second, third, etc round of discussion<=
br>
on a proposal. It may not be reasonable to say &quot;you had the last 2 yea=
rs of<br>
time to voice your concern&quot;.<br>
<br>
Now that CTV is being taken seriously as a proposal, we probably should<br>
give the community who is finally taking a serious look at it time to<br>
understand, get their questions answered, and come to terms with it. This<b=
r>
is not to say that CTV as a technology or proposal has been rushed, or has<=
br>
not had enough work put into it, but rather that the community as a whole<b=
r>
has not paid enough attention to it for long enough.<br>
<br>
The wrong approach is: &quot;how do I yell more loudly next time I see some=
thing<br>
I&#39;m uncomfortable with?&quot; The right approach is to educate those wh=
o aren&#39;t<br>
educated on the proposal and gather consensus on what people think when<br>
they understand enough about it to contribute to that consensus. If you<br>
care about consensus, you should respect the consensus process and be ok<br=
>
with consensus being not your preferred outcome. If you don&#39;t care abou=
t<br>
consensus, then you&#39;re basically attacking the bitcoin community.<br>
<br>
On Sun, May 1, 2022 at 3:22 AM alicexbt via bitcoin-dev &lt;<br>
<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_blank">=
bitcoin-dev@lists.linuxfoundation.org</a>&gt; wrote:<br>
<br>
&gt; Hi Michael,<br>
&gt;<br>
&gt; Maybe the whole thing worked as designed. Some users identified what w=
as<br>
&gt; going on, well known Bitcoin educators such as Andreas Antonopoulos, J=
immy<br>
&gt; Song etc brought additional attention to the dangers, a URSF movement<=
br>
&gt; started to gain momentum and those attempting a contentious soft fork<=
br>
&gt; activation backed off. (Disappointingly Bitcoin Optech didn&#39;t cove=
r my<br>
&gt; previous posts to this mailing list 1<br>
&gt; &lt;<a href=3D"https://lists.linuxfoundation.org/pipermail/bitcoin-dev=
/2021-October/019535.html" target=3D"_blank">https://lists.linuxfoundation.=
org/pipermail/bitcoin-dev/2021-October/019535.html</a>&gt;,<br>
&gt; 2<br>
&gt; &lt;<a href=3D"https://lists.linuxfoundation.org/pipermail/bitcoin-dev=
/2022-January/019728.html" target=3D"_blank">https://lists.linuxfoundation.=
org/pipermail/bitcoin-dev/2022-January/019728.html</a>&gt;,<br>
&gt; 3<br>
&gt; &lt;<a href=3D"https://lists.linuxfoundation.org/pipermail/bitcoin-dev=
/2022-April/020235.html" target=3D"_blank">https://lists.linuxfoundation.or=
g/pipermail/bitcoin-dev/2022-April/020235.html</a>&gt;<br>
&gt; highlighting the dangers many months ago or recent posts. Normally Opt=
ech<br>
&gt; is very high signal.)<br>
&gt;<br>
&gt;<br>
&gt; Some users have been misled and there is nothing great being achieved =
by<br>
&gt; doing this on social media. Andreas is clueless about BIP 119 and othe=
r<br>
&gt; covenant proposals. He is spreading misinformation and some of the URS=
F<br>
&gt; enthusiasts do not understand what are they even opposing or going to =
run<br>
&gt; with risks involved.<br>
&gt;<br>
&gt;<br>
&gt; Answering the subject of this email: &quot;What to do when contentious=
 soft<br>
&gt; forks activations are attempted?&quot;<br>
&gt;<br>
&gt; - Do not consider something contentious because someone said it on mai=
ling<br>
&gt; list<br>
&gt; - Do not spread misinformation<br>
&gt; - Read all posts in detail with different opinions<br>
&gt; - Avoid personal attacks<br>
&gt; - Look at the technical details, code etc. and comment on things that<=
br>
&gt; could be improved<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; /dev/fd0<br>
&gt;<br>
&gt; Sent with ProtonMail &lt;<a href=3D"https://protonmail.com/" target=3D=
"_blank">https://protonmail.com/</a>&gt; secure email.<br>
&gt;<br>
&gt; ------- Original Message -------<br>
&gt; On Saturday, April 30th, 2022 at 3:23 PM, Michael Folkson via bitcoin-=
dev<br>
&gt; <a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_bl=
ank">
bitcoin-dev@lists.linuxfoundation.org</a> wrote:<br>
&gt;<br>
&gt;<br>
&gt; I?ve been in two minds on whether to completely move on to other topic=
s or<br>
&gt; to formulate some thoughts on the recent attempt to activate a content=
ious<br>
&gt; soft fork. In the interests of those of us who have wasted<br>
&gt; days/weeks/months of our time on this (with no personal upside) and wh=
o<br>
&gt; don?t want to repeat this exercise again I thought I should at least r=
aise<br>
&gt; the issue for discussion of what should be done differently if this is=
<br>
&gt; tried again in future.<br>
&gt;<br>
&gt; This could be Jeremy with OP_CTV at a later point (assuming it is stil=
l<br>
&gt; contentious) or anyone who wants to pick up a single opcode that is no=
t yet<br>
&gt; activated on Bitcoin and try to get miners to signal for it bypassing<=
br>
&gt; technical concerns from many developers, bypassing Bitcoin Core and<br=
>
&gt; bypassing users.<br>
&gt;<br>
&gt; Maybe the whole thing worked as designed. Some users identified what w=
as<br>
&gt; going on, well known Bitcoin educators such as Andreas Antonopoulos, J=
immy<br>
&gt; Song etc brought additional attention to the dangers, a URSF movement<=
br>
&gt; started to gain momentum and those attempting a contentious soft fork<=
br>
&gt; activation backed off. (Disappointingly Bitcoin Optech didn&#39;t cove=
r my<br>
&gt; previous posts to this mailing list 1<br>
&gt; &lt;<a href=3D"https://lists.linuxfoundation.org/pipermail/bitcoin-dev=
/2021-October/019535.html" target=3D"_blank">https://lists.linuxfoundation.=
org/pipermail/bitcoin-dev/2021-October/019535.html</a>&gt;,<br>
&gt; 2<br>
&gt; &lt;<a href=3D"https://lists.linuxfoundation.org/pipermail/bitcoin-dev=
/2022-January/019728.html" target=3D"_blank">https://lists.linuxfoundation.=
org/pipermail/bitcoin-dev/2022-January/019728.html</a>&gt;,<br>
&gt; 3<br>
&gt; &lt;<a href=3D"https://lists.linuxfoundation.org/pipermail/bitcoin-dev=
/2022-April/020235.html" target=3D"_blank">https://lists.linuxfoundation.or=
g/pipermail/bitcoin-dev/2022-April/020235.html</a>&gt;<br>
&gt; highlighting the dangers many months ago or recent posts. Normally Opt=
ech<br>
&gt; is very high signal.)<br>
&gt;<br>
&gt; Alternatively this was the first time a contentious soft fork activati=
on<br>
&gt; was attempted, we were all woefully unprepared for it and none of us k=
new<br>
&gt; what we were doing.<br>
&gt;<br>
&gt; I?m unsure on the above. I?d be interested to hear thoughts. What I am=
<br>
&gt; sure of is that it is totally unacceptable for one individual to bring=
 the<br>
&gt; entire Bitcoin network to the brink of a chain split. There has to be =
a<br>
&gt; personal cost to that individual dissuading them from trying it again<=
br>
&gt; otherwise they?re motivated to try it again every week/month. Perhaps =
the<br>
&gt; personal cost that the community is now prepared if that individual tr=
ies<br>
&gt; it again is sufficient. I?m not sure. Obviously Bitcoin is a permissio=
nless<br>
&gt; network, Bitcoin Core and other open source projects are easily forked=
 and<br>
&gt; no authority (I?m certainly no authority) can stop things like this<br=
>
&gt; happening again.<br>
&gt;<br>
&gt; I?ll follow the responses if people have thoughts (I won&#39;t be resp=
onding<br>
&gt; to the instigators of this contentious soft fork activation attempt) b=
ut<br>
&gt; other than that I?d like to move on to other things than contentious s=
oft<br>
&gt; fork activations. Thanks to those who have expressed concerns publicly=
 (too<br>
&gt; many to name, Bob McElrath was often wording arguments better than I c=
ould)<br>
&gt; and who were willing to engage with the URSF conversation. If an indiv=
idual<br>
&gt; can go directly to miners to get soft forks activated bypassing techni=
cal<br>
&gt; concerns from many developers, bypassing Bitcoin Core and bypassing us=
ers<br>
&gt; Bitcoin is fundamentally broken. The reason I still have hope that it =
isn&#39;t<br>
&gt; is that during a period of general apathy some people were willing to =
stand<br>
&gt; up and actively resist it.<br>
&gt;<br>
&gt; --<br>
&gt; Michael Folkson<br>
&gt; Email: michaelfolkson at <a href=3D"http://protonmail.com" target=3D"_=
blank">
protonmail.com</a><br>
&gt; Keybase: michaelfolkson<br>
&gt; PGP: 43ED C999 9F85 1D40 EAF4 9835 92D6 0159 214C FEE3<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; bitcoin-dev mailing list<br>
&gt; <a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_bl=
ank">
bitcoin-dev@lists.linuxfoundation.org</a><br>
&gt; <a href=3D"https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-=
dev" target=3D"_blank">
https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a><br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href=3D"http://lists.linuxfoundation.org/pipermail/bitcoin-dev/=
attachments/20220501/7158d8ed/attachment-0001.html" target=3D"_blank">http:=
//lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20220501/7158=
d8ed/attachment-0001.html</a>&gt;<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Sun, 1 May 2022 19:43:29 -0700<br>
From: Jeremy Rubin &lt;<a href=3D"mailto:jeremy.l.rubin@gmail.com" target=
=3D"_blank">jeremy.l.rubin@gmail.com</a>&gt;<br>
To: Bitcoin development mailing list<br>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfo=
undation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a>&g=
t;<br>
Subject: [bitcoin-dev] Working Towards Consensus<br>
Message-ID:<br>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 &lt;CAD5xwhhdEgADWwLwbjRKp-UFCw9hHjDsc-L=3Dpkiw=
W=3D<a href=3D"mailto:bmhFqBNw@mail.gmail.com" target=3D"_blank">bmhFqBNw@m=
ail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=3D&quot;utf-8&quot;<br>
<br>
Developers,<br>
<br>
There is much to say about the events of the last two weeks and the<br>
response to them. I&#39;ve been searching for the right words to share here=
,<br>
but I think it best that short of a more thoughtful writeup I start with a<=
br>
timely small step with the below comments.<br>
<br>
First, let me be clear: I am not advancing a Speedy Trial(ST) activation of=
<br>
Bitcoin Improvement Proposal-119 (BIP-119) CheckTemplateVerify (CTV) at<br>
this time.<br>
<br>
I&#39;m skipping any discussion of the drama here. Most of you are interest=
ed<br>
in developing Bitcoin, not drama. Let&#39;s try to keep this thread focused=
 on<br>
the actual work. I&#39;ll make some limited comments on the drama in a sepa=
rate<br>
thread, for those who care to hear from me on the subject directly.<br>
<br>
I believe that the disinformation spread around my post (&quot;7 Theses on =
a<br>
next step for BIP-119&quot;[0]) created three main negative outcomes within=
 the<br>
Bitcoin community:<br>
<br>
1. Confusion about how Bitcoin&#39;s &quot;technical consensus&quot; works =
and how<br>
changes are &quot;approved&quot;.<br>
2. Fear about the safety of CTV and covenants more broadly.<br>
3. Misunderstandings around the properties of Speedy Trial, User Activated<=
br>
Soft Fork (UASF), User Resisted Soft Fork (URSF), Soft Forks, Hard Forks,<b=
r>
and more.<br>
<br>
While I cannot take responsibility for the spread of the disinformation, I<=
br>
do apologize to anyone dealing with it for the role my actions have had in<=
br>
leading to the current circumstance.<br>
<br>
I personally take some solace in knowing that the only way out of this is<b=
r>
through it. The conversations happening now seem to have been more or less<=
br>
inevitable, this has brought them to the surface, and as a technical<br>
community we are able to address them head on if -- as individuals and<br>
collectively -- we choose to. And, viewed through a certain lens, these<br>
conversations represent incredibly important opportunities to participate<b=
r>
in defining the future of Bitcoin that would not be happening otherwise.<br=
>
Ultimately, I am grateful to live in a time where I am able to play a small=
<br>
role in such an important process. This is the work.<br>
<br>
In the coming months, I expect the discourse to be messy, but I think the<b=
r>
work is clear cut that we should undertake at least the following:<br>
<br>
1. Make great efforts to better document how Bitcoin&#39;s technical consen=
sus<br>
process works today, how it can be improved, and how changes may be<br>
formally reviewed while still being unofficially advanced.<br>
2. Work diligently to address the concerns many in the community have<br>
around the negative potential of covenants and better explain the<br>
trade-offs between levels of functionality.<br>
3. Renew conversations about activation and release mechanisms and<br>
re-examine our priors around why Speedy Trial may have been acceptable for<=
br>
Taproot, was not acceptable for BIP-119, but may not be optimal long<br>
term[1], and work towards processes that better captures the Bitcoin<br>
network&#39;s diverse interests and requirements.<br>
4. Work towards thoroughly systematizing knowledge around covenant<br>
technologies so that in the coming months we may work towards delivering a<=
br>
coherent pathway for the Bitcoin technical community to evaluate and put up=
<br>
for offer to the broader community an upgrade or set of upgrades to improve=
<br>
Bitcoin&#39;s capabilities for self sovereignty, privacy, scalability, and<=
br>
decentralization.<br>
<br>
This may not be the easiest path to take, but I believe that this work is<b=
r>
critical to the future of Bitcoin. I welcome all reading this to share your=
<br>
thoughts with this list on how we might work towards consensus going<br>
forward, including any criticisms of my observations and recommendations<br=
>
above. While I would expect nothing less than passionate debate when it<br>
comes to Bitcoin, remember that at the end of the day we all largely share<=
br>
a mission to make the world a freer place, even if we disagree about how we=
<br>
get there.<br>
<br>
Yours truly,<br>
<br>
Jeremy<br>
<br>
[0]: <a href=3D"https://rubin.io/bitcoin/2022/04/17/next-steps-bip119/" tar=
get=3D"_blank">
https://rubin.io/bitcoin/2022/04/17/next-steps-bip119/</a><br>
[1]: <a href=3D"http://r6.ca/blog/20210615T191422Z.html" target=3D"_blank">
http://r6.ca/blog/20210615T191422Z.html</a> I quite enjoyed Roconnor&#39;s<=
br>
detailed post on Speedy Trial<br>
<br>
--<br>
@JeremyRubin &lt;<a href=3D"https://twitter.com/JeremyRubin" target=3D"_bla=
nk">https://twitter.com/JeremyRubin</a>&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href=3D"http://lists.linuxfoundation.org/pipermail/bitcoin-dev/=
attachments/20220501/9009e65d/attachment.html" target=3D"_blank">http://lis=
ts.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20220501/9009e65d/=
attachment.html</a>&gt;<br>
<br>
------------------------------<br>
<br>
Subject: Digest Footer<br>
<br>
_______________________________________________<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/bitcoi=
n-dev</a><br>
<br>
<br>
------------------------------<br>
<br>
End of bitcoin-dev Digest, Vol 84, Issue 4<br>
******************************************<br>
</blockquote>
</div>
</div>
</div>
</div>

</blockquote></div>

--0000000000007e7ea405de838737--