summaryrefslogtreecommitdiff
path: root/a6/e9fbee572fdfaa2f1fcb3c432e4822258eba5b
blob: 56ac3a3ffa5e4d04c959cd83568f5d4323332509 (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
Return-Path: <keagan.mcclelland@gmail.com>
Received: from smtp3.osuosl.org (smtp3.osuosl.org [140.211.166.136])
 by lists.linuxfoundation.org (Postfix) with ESMTP id BE744C000D
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Thu, 18 Feb 2021 15:05:16 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
 by smtp3.osuosl.org (Postfix) with ESMTP id 924A06062D
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Thu, 18 Feb 2021 15:05:16 +0000 (UTC)
X-Virus-Scanned: amavisd-new at osuosl.org
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 pNft8Hrb09N8
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Thu, 18 Feb 2021 15:05:12 +0000 (UTC)
Received: by smtp3.osuosl.org (Postfix, from userid 1001)
 id 6DC87605F9; Thu, 18 Feb 2021 15:05:12 +0000 (UTC)
X-Greylist: domain auto-whitelisted by SQLgrey-1.8.0
Received: from mail-wr1-f45.google.com (mail-wr1-f45.google.com
 [209.85.221.45])
 by smtp3.osuosl.org (Postfix) with ESMTPS id 6ABFB60656
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Thu, 18 Feb 2021 15:05:07 +0000 (UTC)
Received: by mail-wr1-f45.google.com with SMTP id r21so3320505wrr.9
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Thu, 18 Feb 2021 07:05:07 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;
 h=mime-version:references:in-reply-to:from:date:message-id:subject:to
 :cc; bh=I2nYbvjRVLrv/1t7CyvIAMQgM5wO3wQHMEJbGJ2G73Q=;
 b=Cm8DvMZPP/V+9BG+V5aMLME9WmoTKDs24LN0ychdtRIuPXK3jikgnhjpOIhzlNqcGb
 Sx/cA2jeTj0hqocABV0WeH84X5+U2svxln4DOFYgcIK/Z2luuuhf61u2w0vBONx6W5wI
 d+vDmUquHNoREO49CrA2w4NQy26mjFkGJvoRT1hGbXSL6Ydrhz/gYDHnxCmlKAUfb6IP
 im0G/TR2XNCMNCqZ2IF4LIkRM5pEf/DEkLpWpq4JXsa+myeAaihN5TIlQiy0SLRhX/OY
 fD2kRn1uCGd4tpwS7Lm0bQBmiGk9QkfIq17kA37vkNbGkBZTXd8BayjnmaCzuFKv7Sag
 EPjw==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:mime-version:references:in-reply-to:from:date
 :message-id:subject:to:cc;
 bh=I2nYbvjRVLrv/1t7CyvIAMQgM5wO3wQHMEJbGJ2G73Q=;
 b=q0HcNcfsn3it34LZjI2yK1QqurB2bDPJXZ/inN/YSrzt+0e6ALYtqjVrLz0KBXL+E/
 iLelKRQ94bnn1Bv5+HYhQuX0G2adWsR/tGKKM9FouczYe3Iq9mHsfx1wzOWVYm22dRH6
 DGCsZoYC4PAp25Bmy8pqvR1cIRMItJgAlzLB5KGOLDQ8gP3C3oF1iZCNgCcFP6dx2Sh7
 pGRisRb2bjXNF8gvHv5kg++QtUbv5ATj5a8bHsNbkXsCo5bR62JvX24l0QrufrzJktaA
 Xh0rZ2H0n7nhbY/NFQwMxdCY3ozi5NroX47eX6KT2r/xYY7hh4RDzPxHkrti/DMxUblg
 FqDw==
X-Gm-Message-State: AOAM531g7I+pvTr7r6DbAiDK5DlLDlX6ej1Q25IoN/ipvNIAHJZfRiG6
 djw0cNp4GbGnlR6OB10TMH/tJGIpi0DLmgla+W8=
X-Google-Smtp-Source: ABdhPJyq+Catym2CYUJZWZQQEABpVJd0irApyWwsNeRpUnzLJbew0aM0NeGAhQkIf2eK2RsANA6vZocaynCs2vH9mbs=
X-Received: by 2002:adf:97d3:: with SMTP id t19mr4901396wrb.164.1613660705246; 
 Thu, 18 Feb 2021 07:05:05 -0800 (PST)
MIME-Version: 1.0
References: <CAFvNmHSHu0gqVgWxOCJnSTf5mxpWsMF9FrMQ+_X+uyR3P4QCsg@mail.gmail.com>
 <8591CF93-E574-4C23-90D5-FA410637DECD@mattcorallo.com>
 <CAFvNmHSwRGEy-kE8OA4mcDJ+fJjO7J1ckThWY=wqv4yge-MA1Q@mail.gmail.com>
 <7b8543c3-8ff2-3a6a-b2d4-f4a6cf150d78@mattcorallo.com>
In-Reply-To: <7b8543c3-8ff2-3a6a-b2d4-f4a6cf150d78@mattcorallo.com>
From: Keagan McClelland <keagan.mcclelland@gmail.com>
Date: Thu, 18 Feb 2021 08:04:53 -0700
Message-ID: <CALeFGL1e+q2mrCox99sUOAXYu3qcC7Xce7AfkuKuLPmxh1oSiA@mail.gmail.com>
To: Matt Corallo <lf-lists@mattcorallo.com>, 
 Bitcoin Protocol Discussion <bitcoin-dev@lists.linuxfoundation.org>
Content-Type: multipart/alternative; boundary="0000000000001fd22805bb9da901"
X-Mailman-Approved-At: Thu, 18 Feb 2021 15:48:01 +0000
Cc: Michael Folkson <michaelfolkson@gmail.com>
Subject: Re: [bitcoin-dev] Yesterday's Taproot activation meeting on
 lockinontimeout (LOT)
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: Thu, 18 Feb 2021 15:05:16 -0000

--0000000000001fd22805bb9da901
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Hi all,

I think it's important for us to consider what is actually being considered
for activation here.

The designation of "soft fork" is accurate but I don't think it adequately
conveys how non-intrusive a change like this is. All that taproot does
(unless I'm completely missing something) is imbue a previously undefined
script version with actual semantics. In order for a chain reorg to take
place it would mean that someone would have to have a use case for that
script version today. This is something I think that we can easily check by
digging through the UTXO set or history. If anyone is using that script
version, we absolutely should not be using it, but that doesn't mean that
we can't switch to a script version that no one is actually using.

If no one is even attempting to use the script version, then the change has
no effect on whether a chain split occurs because there is simply no block
that contains a transaction that only some of the network will accept.

Furthermore, I don't know how Bitcoin can stand the test of time if we
allow developers who rely on "undefined behavior" (which the taproot script
version presently is) to exert tremendous influence over what code does or
does not get run. This isn't a soft fork that makes some particular UTXO's
unspendable. It isn't one that bans miners from collecting fees. It is a
change that means that certain "always accept" transactions actually have
real conditions you have to meet. I can't imagine a less intrusive change.

On the other hand, choosing to let L=3DF be a somewhat final call sets a ve=
ry
real precedent that 10% of what I estimate to be 1% of bitcoin users can
effectively block any change from here on forward. At that point we are
saying that miners are in control of network consensus in ways they have
not been up until now. I don't think this is a more desirable outcome to
let ~0.1% of the network get to block *non-intrusive* changes that the rest
of the network wants.

I can certainly live with an L=3DF attempt as a way to punt on the
discussion, maybe the activation happens and this will all be fine. But if
it doesn't, I hardly think that users of Bitcoin are just going to be like
"well, guess that's it for Taproot". I have no idea what ensues at that
point, but probably another community led UASF movement.

I wasn't super well educated on this stuff back in '17 when Segwit went
down, as I was new at that time, so if I'm missing something please say so.
But from my point of view, we can't treat all soft forks as equal.

Keagan

On Thu, Feb 18, 2021 at 7:43 AM Matt Corallo via bitcoin-dev <
bitcoin-dev@lists.linuxfoundation.org> wrote:

> We've had several softforks in Bitcoin which, through the course of their
> activation, had a several-block reorg. That
> should be indication enough that we need to very carefully consider
> activation to ensure we reduce the risk of that as
> much as absolutely possible. Again, while I think Taproot is a huge
> improvement and am looking forward to being able to
> use it, getting unlucky and hitting a 4-block reorg that happens to
> include a double-spend and some PR around an
> exchange losing millions would be worse than having Taproot is good.
>
> Matt
>
> On 2/18/21 09:26, Michael Folkson wrote:
> > Thanks for your response Matt. It is a fair challenge. There is always
> going to be an element of risk with soft forks,
> > all we can do is attempt to minimize that risk. I would argue that risk
> has been minimized for Taproot.
> >
> > You know (better than I do in fact) that Bitcoin (and layers built on
> top of it) greatly benefit from upgrades such as
> > Taproot. To say we shouldn't do Taproot or any future soft forks becaus=
e
> there is a small but real risk of chain splits
> > I think is shortsighted. Indeed I think even if we collectively decided
> not to do any future soft fork upgrades ever
> > again on this mailing list that wouldn't stop soft fork attempts from
> other people in future.
> >
> > I don't think there is anything else we can do to minimize that risk fo=
r
> the Taproot soft fork at this point though I'm
> > open to ideas. To reiterate that risk will never be zero. I don't think
> I see Bitcoin as fragile as you seem to (though
> > admittedly you have a much better understanding than me of what happene=
d
> in 2017).
> >
> > The likely scenario for the Taproot soft fork is LOT turns out to be
> entirely irrelevant and miners activate Taproot
> > before it becomes relevant. And even the unlikely worst case scenario
> would only cause short term disruption and
> > wouldn't kill Bitcoin long term.
> >
> > On Thu, Feb 18, 2021 at 2:01 PM Matt Corallo <lf-lists@mattcorallo.com
> <mailto:lf-lists@mattcorallo.com>> wrote:
> >
> >     If the eventual outcome is that different implementations (that hav=
e
> material *transaction processing* userbases,
> >     and I=E2=80=99m not sure to what extent that=E2=80=99s true with Kn=
ots) ship
> different consensus rules, we should stop here and not
> >     activate Taproot. Seriously.
> >
> >     Bitcoin is a consensus system. The absolute worst outcome at all
> possible is to have it fall out of consensus.
> >
> >     Matt
> >
> >>     On Feb 18, 2021, at 08:11, Michael Folkson via bitcoin-dev <
> bitcoin-dev@lists.linuxfoundation.org
> >>     <mailto:bitcoin-dev@lists.linuxfoundation.org>> wrote:
> >>
> >>     =EF=BB=BF
> >>     Right, that is one option. Personally I would prefer a Bitcoin Cor=
e
> release sets LOT=3Dfalse (based on what I have
> >>     heard from Bitcoin Core contributors) and a community effort
> releases a version with LOT=3Dtrue. I don't think users
> >>     should be forced to choose something they may have no context on
> before they are allowed to use Bitcoin Core.
> >>
> >>     My current understanding is that roasbeef is planning to set
> LOT=3Dfalse on btcd (an alternative protocol
> >>     implementation to Bitcoin Core) and Luke Dashjr hasn't yet decided
> on Bitcoin Knots.
> >>
> >>
> >>
> >>     On Thu, Feb 18, 2021 at 11:52 AM ZmnSCPxj <ZmnSCPxj@protonmail.com
> <mailto:ZmnSCPxj@protonmail.com>> wrote:
> >>
> >>         Good morning all,
> >>
> >>         > "An activation mechanism is a consensus change like any othe=
r
> change, can be contentious like any other
> >>         change, and we must resolve it like any other change. Otherwis=
e
> we risk arriving at the darkest timeline."
> >>         >
> >>         > Who's we here?
> >>         >
> >>         > Release both and let the network decide.
> >>
> >>         A thing that could be done, without mandating either LOT=3Dtru=
e
> or LOT=3Dfalse, would be to have a release that
> >>         requires a `taprootlot=3D1` or `taprootlot=3D0` and refuses to
> start if the parameter is not set.
> >>
> >>         This assures everyone that neither choice is being forced on
> users, and instead what is being forced on users,
> >>         is for users to make that choice themselves.
> >>
> >>         Regards,
> >>         ZmnSCPxj
> >>
> >>         >
> >>         > On Thu, Feb 18, 2021 at 3:08 AM Michael Folkson via
> bitcoin-dev <bitcoin-dev@lists.linuxfoundation.org
> >>         <mailto:bitcoin-dev@lists.linuxfoundation.org>> wrote:
> >>         >
> >>         > > Thanks for your response Ariel. It would be useful if you
> responded to specific points I have made in the
> >>         mailing list post or at least quote these ephemeral "people"
> you speak of. I don't know if you're responding
> >>         to conversation on the IRC channel or on social media etc.
> >>         > >
> >>         > > > The argument comes from a naive assumption that users
> MUST upgrade to the choice that is submitted into
> >>         code. But in fact this isn't true and some voices in this
> discussion need to be more humble about what users
> >>         must or must not run.
> >>         > >
> >>         > > I personally have never made this assumption. Of course
> users aren't forced to run any particular software
> >>         version, quite the opposite. Defaults set in software versions
> matter though as many users won't change them.
> >>         > >
> >>         > > > Does no one realize that it is a very possible outcome
> that if LOT=3Dtrue is released there may be only a
> >>         handful of people that begin running it while everyone else
> delays their upgrade (with the very good reason of
> >>         not getting involved in politics) and a year later those
> handful of people just become stuck at the moment of
> >>         MUST_SIGNAL, unable to mine new blocks?
> >>         > >
> >>         > > It is a possible outcome but the likely outcome is that
> miners activate Taproot before LOT is even
> >>         relevant. I think it is prudent to prepare for the unlikely bu=
t
> possible outcome that miners fail to activate
> >>         and hence have this discussion now rather than be unprepared
> for that eventuality. If LOT is set to false in a
> >>         software release there is the possibility (T2 in
> >>
> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-February/018=
380.html
> >>         <
> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-February/018=
380.html>)
> of individuals or a
> >>         proportion of the community changing LOT to true. In that sens=
e
> setting LOT=3Dfalse in a software release
> >>         appears to be no more safe than LOT=3Dtrue.
> >>         > >
> >>         > > > The result: a wasted year of waiting and a minority of
> people who didn't want to be lenient with miners
> >>         by default.
> >>         > >
> >>         > > There is the (unlikely but possible) possibility of a
> wasted year if LOT is set to false and miners fail
> >>         to activate. I'm not convinced by this perception that LOT=3Dt=
rue
> is antagonistic to miners. I actually think it
> >>         offers them clarity on what will happen over a year time perio=
d
> and removes the need for coordinated or
> >>         uncoordinated community UASF efforts on top of LOT=3Dfalse.
> >>         > >
> >>         > > > An activation mechanism is a consensus change like any
> other change, can be contentious like any other
> >>         change, and we must resolve it like any other change. Otherwis=
e
> we risk arriving at the darkest timeline.
> >>         > >
> >>         > > I don't know what you are recommending here to avoid "this
> darkest timeline". Open discussions have
> >>         occurred and are continuing and in my mailing list post that
> you responded to **I recommended we propose
> >>         LOT=3Dfalse be set in protocol implementations such as Bitcoin
> Core**. I do think this apocalyptic language
> >>         isn't particularly helpful. In an open consensus system
> discussion is healthy, we should prepare for bad or
> >>         worst case scenarios in advance and doing so is not
> antagonistic or destructive. Mining pools have pledged
> >>         support for Taproot but we don't build secure systems based on
> pledges of support, we build them to minimize
> >>         trust in any human actors. We can be grateful that people like
> Alejandro have worked hard on
> >>         taprootactivation.com <http://taprootactivation.com> (and this
> effort has informed the discussion) without
> >>         taking pledges of support as cast iron guarantees.
> >>         > >
> >>         > > TL;DR It sounds like you agree with my recommendation to
> set LOT=3Dfalse in protocol implementations in my
> >>         email :)
> >>         > >
> >>         > > On Thu, Feb 18, 2021 at 5:43 AM Ariel Lorenzo-Luaces <
> arielluaces@gmail.com
> >>         <mailto:arielluaces@gmail.com>> wrote:
> >>         > >
> >>         > > > Something what strikes me about the conversation is the
> emotion surrounding the letters UASF.
> >>         > > > It appears as if people discuss UASF as if it's a massiv=
e
> tidal wave of support that is inevitable, like
> >>         we saw during segwit activation. But the actual definition is
> "any activation that is not a MASF".
> >>         > > > A UASF can consist of a single node, ten nodes, a
> thousand, half of all nodes, all business' nodes, or
> >>         even all the non mining nodes. On another dimension it can hav=
e
> zero mining support, 51% support, 49% support,
> >>         or any support right up against a miner activation threshold.
> >>         > > > Hell a UASF doesn't even need code or even a single node
> running as long as it exists as a possibility
> >>         in people's minds.
> >>         > > > The only thing a UASF doesn't have is miner support abov=
e
> an agreed activation threshold (some number
> >>         above %51).
> >>         > > > I say this because it strikes me when people say that
> they are for LOT=3Dtrue with the logic that since a
> >>         UASF is guaranteed to happen then it's better to just make it
> default from the beginning. Words like
> >>         coordination and safety are sometimes sprinkled into the
> argument.
> >>         > > > The argument comes from a naive assumption that users
> MUST upgrade to the choice that is submitted into
> >>         code. But in fact this isn't true and some voices in this
> discussion need to be more humble about what users
> >>         must or must not run.
> >>         > > > Does no one realize that it is a very possible outcome
> that if LOT=3Dtrue is released there may be only a
> >>         handful of people that begin running it while everyone else
> delays their upgrade (with the very good reason of
> >>         not getting involved in politics) and a year later those
> handful of people just become stuck at the moment of
> >>         MUST_SIGNAL, unable to mine new blocks? Or attracting a
> minority of miners, activating, and forking off into a
> >>         minority fork. Then a lot=3Dfalse could be started that ends u=
p
> activating the feature now that the stubborn
> >>         option has ran its course.
> >>         > > > The result: a wasted year of waiting and a minority of
> people who didn't want to be lenient with miners
> >>         by default. The chains could be called BitcoinLenient and
> BitcoinStubborn.
> >>         > > > How is that strictly safer or more coordinated?
> >>         > > > I may be in the minority, or maybe a silent majority, or
> maybe a majority that just hasn't considered
> >>         this as a choice but honestly if there is contention about
> whether we're going to be stubborn or lenient with
> >>         miners for Taproot and in the future then I prefer to just not
> activate anything at all. I'm fine for calling
> >>         bitcoin ossified, accepting that segwit is Bitcoin's last
> network upgrade. Taproot is amazing but no new
> >>         feature is worth a network split down the middle.
> >>         > > > Maybe in 10 or 20 years, when other blockchains implemen=
t
> features like Taproot and many more, we will
> >>         become envious enough to put aside our differences on how to
> behave towards miners and finally activate Taproot.
> >>         > > > An activation mechanism is a consensus change like any
> other change, can be contentious like any other
> >>         change, and we must resolve it like any other change. Otherwis=
e
> we risk arriving at the darkest timeline.
> >>         > > > Cheers
> >>         > > > Ariel Lorenzo-Luaces
> >>         > > > On Feb 17, 2021, at 7:05 AM, Michael Folkson via
> bitcoin-dev <bitcoin-dev@lists.linuxfoundation.org
> >>         <mailto:bitcoin-dev@lists.linuxfoundation.org>> wrote:
> >>         > > >
> >>         > > > > Yesterday (February 16th) we held a second meeting on
> Taproot
> >>         > > > > activation on IRC which again was open to all. Despite
> what appeared
> >>         > > > > to be majority support for LOT=3Dfalse over LOT=3Dtrue=
 in
> the first
> >>         > > > > meeting I (and others) thought the arguments had not
> been explored in
> >>         > > > > depth and that we should have a follow up meeting
> almost entirely
> >>         > > > > focused on whether LOT (lockinontimeout) should be set
> to true or
> >>         > > > > false.
> >>         > > > >
> >>         > > > > The meeting was announced here:
> >>         > > > >
> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-February/018=
380.html
> >>         <
> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-February/018=
380.html
> >
> >>         > > > >
> >>         > > > > In that mailing list post I outlined the arguments for
> LOT=3Dtrue (T1 to
> >>         > > > > T6) and arguments for LOT=3Dfalse (F1 to F6) in their
> strongest form I
> >>         > > > > could. David Harding responded with an additional
> argument for
> >>         > > > > LOT=3Dfalse (F7) here:
> >>         > > > >
> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-February/018=
415.html
> >>         <
> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-February/018=
415.html
> >
> >>         > > > >
> >>         > > > > These meetings are very challenging given they are ope=
n
> to all, you
> >>         > > > > don=E2=80=99t know who will attend and you don=E2=80=
=99t know most
> people=E2=80=99s views in
> >>         > > > > advance. I tried to give time for both the LOT=3Dtrue
> arguments and the
> >>         > > > > LOT=3Dfalse arguments to be discussed as I knew there =
was
> support for
> >>         > > > > both. We only tried evaluating which had more support
> and which had
> >>         > > > > more strong opposition towards the end of the meeting.
> >>         > > > >
> >>         > > > > The conversation log is here:
> >>         > > > > http://gnusha.org/taproot-activation/2021-02-16.log <
> http://gnusha.org/taproot-activation/2021-02-16.log>
> >>         > > > >
> >>         > > > > (If you are so inclined you can watch a video of the
> meeting here.
> >>         > > > > Thanks to the YouTube account =E2=80=9CBitcoin=E2=80=
=9D for setting up
> the livestream:
> >>         > > > > https://www.youtube.com/watch?v=3Dvpl5q1ovMLM <
> https://www.youtube.com/watch?v=3Dvpl5q1ovMLM>)
> >>         > > > >
> >>         > > > > A summary of the meeting was provided by Luke Dashjr o=
n
> Mastodon here:
> >>         > > > >
> https://bitcoinhackers.org/@lukedashjr/105742918779234566
> >>         <https://bitcoinhackers.org/@lukedashjr/105742918779234566>
> >>         > > > >
> >>         > > > > Today's #Bitcoin #Taproot meeting was IMO largely
> unproductive, but we
> >>         > > > > did manage to come to consensus on everything but
> LockinOnTimeout.
> >>         > > > >
> >>         > > > > Activation height range: 693504-745920
> >>         > > > >
> >>         > > > > MASF threshold: 1815/2016 blocks (90%)
> >>         > > > >
> >>         > > > > Keep in mind only ~100 people showed for the meetings,
> hardly
> >>         > > > > representative of the entire community.
> >>         > > > >
> >>         > > > > So, these details remain JUST a proposal for now.
> >>         > > > >
> >>         > > > > It seems inevitable that there won't be consensus on
> LOT.
> >>         > > > >
> >>         > > > > Everyone will have to choose for himself. :/
> >>         > > > >
> >>         > > > > Personally I agree with most of this. I agree that
> there wasn=E2=80=99t
> >>         > > > > overwhelming consensus for either LOT=3Dtrue or
> LOT=3Dfalse. However, from
> >>         > > > > my perspective there was clearly more strong oppositio=
n
> (what would
> >>         > > > > usually be deemed a NACK in Bitcoin Core review
> terminology) from
> >>         > > > > Bitcoin Core contributors, Lightning developers and
> other community
> >>         > > > > members against LOT=3Dtrue than there was for LOT=3Dfa=
lse.
> Andrew Chow
> >>         > > > > tried to summarize views from the meeting in this
> analysis:
> >>         > > > >
> https://gist.github.com/achow101/3e179501290abb7049de198d46894c7c
> >>         <
> https://gist.github.com/achow101/3e179501290abb7049de198d46894c7c>
> >>         > > > >
> >>         > > > > I am also aware of other current and previous Bitcoin
> Core
> >>         > > > > contributors and Lightning developers who didn=E2=80=
=99t attend
> the meeting in
> >>         > > > > person who are opposed to LOT=3Dtrue. I don=E2=80=99t =
want to put
> them in the
> >>         > > > > spotlight for no reason but if you go through the
> conversation logs of
> >>         > > > > not only the meeting but the weeks of discussion prior
> to this meeting
> >>         > > > > you will see their views evaluated on the
> ##taproot-activation
> >>         > > > > channel. In addition, on taprootactivation.com <
> http://taprootactivation.com> some mining pools
> >>         > > > > expressed a preference for lot=3Dfalse though I don=E2=
=80=99t
> know how strong
> >>         > > > > that preference was.
> >>         > > > >
> >>         > > > > I am only one voice but it is my current assessment
> that if we are to
> >>         > > > > attempt to finalize Taproot activation parameters and
> propose them to
> >>         > > > > the community at this time our only option is to
> propose LOT=3Dfalse.
> >>         > > > > Any further delay appears to me counterproductive in
> our collective
> >>         > > > > aim to get the Taproot soft fork activated as early as
> possible.
> >>         > > > >
> >>         > > > > Obviously others are free to disagree with that
> assessment and
> >>         > > > > continue discussions but personally I will be
> attempting to avoid
> >>         > > > > those discussions unless prominent new information
> comes to light or
> >>         > > > > various specific individuals change their minds.
> >>         > > > >
> >>         > > > > Next week we are planning a code review of the Bitcoin
> Core PR #19573
> >>         > > > > which was initially delayed because of this LOT
> discussion. As I=E2=80=99ve
> >>         > > > > said previously that will be loosely following the
> format of the
> >>         > > > > Bitcoin Core PR review club and will be lower level an=
d
> more
> >>         > > > > technical. That is planned for Tuesday February 23rd a=
t
> 19:00 UTC on
> >>         > > > > the IRC channel ##taproot-activation.
> >>         > > > >
> >>         > > > > Thanks to the meeting participants (and those who
> joined the
> >>         > > > > discussion on the channel prior and post the meeting)
> for engaging
> >>         > > > > productively and in good faith.
> >>         > >
> >>         > > --
> >>         > > Michael Folkson
> >>         > > Email: michaelfolkson@gmail.com <mailto:
> michaelfolkson@gmail.com>
> >>         > > Keybase: michaelfolkson
> >>         > > PGP: 43ED C999 9F85 1D40 EAF4 9835 92D6 0159 214C FEE3
> >>         > > _______________________________________________
> >>         > > bitcoin-dev mailing list
> >>         > > bitcoin-dev@lists.linuxfoundation.org <mailto:
> bitcoin-dev@lists.linuxfoundation.org>
> >>         > >
> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
> >>         <https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-de=
v
> >
> >>
> >>
> >>
> >>
> >>     --
> >>     Michael Folkson
> >>     Email: michaelfolkson@gmail.com <mailto:michaelfolkson@gmail.com>
> >>     Keybase: michaelfolkson
> >>     PGP: 43ED C999 9F85 1D40 EAF4 9835 92D6 0159 214C FEE3
> >>     _______________________________________________
> >>     bitcoin-dev mailing list
> >>     bitcoin-dev@lists.linuxfoundation.org <mailto:
> bitcoin-dev@lists.linuxfoundation.org>
> >>     https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
> >>     <https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev>
> >
> >
> >
> > --
> > Michael Folkson
> > Email: michaelfolkson@gmail.com <mailto:michaelfolkson@gmail.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
>

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

<div dir=3D"ltr"><div>Hi all,</div><div><br></div>I think it&#39;s importan=
t for us to consider what is actually being considered for activation here.=
<div><br></div><div>The designation of &quot;soft fork&quot; is accurate bu=
t I don&#39;t think it adequately conveys how non-intrusive a change like t=
his is. All that taproot does (unless I&#39;m completely missing something)=
 is imbue a previously undefined script version with actual semantics. In o=
rder for a chain reorg to take place it would mean that someone would have =
to have a use case for that script version today. This is something I think=
 that we can easily check by digging through the UTXO set or history. If an=
yone is using that script version, we absolutely should not be using it, bu=
t that doesn&#39;t mean that we can&#39;t switch to a script version that n=
o one is actually using.</div><div><br></div><div>If no one is even attempt=
ing to use the script version, then the change has no effect on whether a c=
hain split occurs because there is simply no block that contains a transact=
ion that only some of the network will accept.</div><div><br></div><div>Fur=
thermore, I don&#39;t know how Bitcoin can stand the test of time if we all=
ow developers who rely on &quot;undefined behavior&quot; (which the taproot=
 script version presently is) to exert tremendous influence over what code =
does or does not get run. This isn&#39;t a soft fork that makes some partic=
ular UTXO&#39;s unspendable. It isn&#39;t one that bans miners from collect=
ing fees. It is a change that means that certain &quot;always accept&quot; =
transactions actually have real conditions you have to meet. I can&#39;t im=
agine a less intrusive change.</div><div><br></div><div>On the other hand, =
choosing to let L=3DF be a somewhat final call sets a very real precedent t=
hat 10% of what I estimate to be 1% of bitcoin users can effectively block =
any change from here on forward. At that point we are saying that miners ar=
e in control of network consensus in ways they have not been up until now. =
I don&#39;t think this is a more desirable outcome to let ~0.1% of the netw=
ork get to block <i>non-intrusive</i>=C2=A0changes that the rest of the net=
work wants.</div><div><br></div><div>I can certainly live with an L=3DF att=
empt as a way to punt on the discussion, maybe the activation happens and t=
his will all be fine. But if it doesn&#39;t, I hardly think that users of B=
itcoin are just going to be like &quot;well, guess that&#39;s it for Taproo=
t&quot;. I have no idea what ensues at that point, but probably another com=
munity led UASF movement.</div><div><br></div><div>I wasn&#39;t super well =
educated on this stuff back in &#39;17 when Segwit went down, as I was new =
at that time, so if I&#39;m missing something please say so. But from my po=
int of view, we can&#39;t treat all soft forks as equal.</div><div><br></di=
v><div>Keagan</div></div><br><div class=3D"gmail_quote"><div dir=3D"ltr" cl=
ass=3D"gmail_attr">On Thu, Feb 18, 2021 at 7:43 AM Matt Corallo via bitcoin=
-dev &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org">bitcoin-d=
ev@lists.linuxfoundation.org</a>&gt; wrote:<br></div><blockquote class=3D"g=
mail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204=
,204,204);padding-left:1ex">We&#39;ve had several softforks in Bitcoin whic=
h, through the course of their activation, had a several-block reorg. That =
<br>
should be indication enough that we need to very carefully consider activat=
ion to ensure we reduce the risk of that as <br>
much as absolutely possible. Again, while I think Taproot is a huge improve=
ment and am looking forward to being able to <br>
use it, getting unlucky and hitting a 4-block reorg that happens to include=
 a double-spend and some PR around an <br>
exchange losing millions would be worse than having Taproot is good.<br>
<br>
Matt<br>
<br>
On 2/18/21 09:26, Michael Folkson wrote:<br>
&gt; Thanks for your response Matt. It is a fair challenge. There is always=
 going to be an element of risk with soft forks, <br>
&gt; all we can do is attempt to minimize that risk. I would argue that ris=
k has been minimized for Taproot.<br>
&gt; <br>
&gt; You know (better than I do in fact) that Bitcoin (and layers built on =
top of it) greatly benefit from upgrades such as <br>
&gt; Taproot. To say we shouldn&#39;t do Taproot or any future soft forks b=
ecause there is a small but real risk of chain splits <br>
&gt; I think is shortsighted. Indeed I think even if we collectively=C2=A0d=
ecided not to do any future soft fork upgrades ever <br>
&gt; again on this mailing list that wouldn&#39;t stop soft fork attempts f=
rom other people in future.<br>
&gt; <br>
&gt; I don&#39;t think there is anything else we can do to minimize that ri=
sk for the Taproot soft fork at this point though I&#39;m <br>
&gt; open to ideas. To reiterate that risk will never be zero. I don&#39;t =
think I see Bitcoin as fragile as you seem to (though <br>
&gt; admittedly you have a much better understanding than me of what happen=
ed in 2017).<br>
&gt; <br>
&gt; The likely scenario for the Taproot soft fork is LOT turns out to be e=
ntirely irrelevant and miners activate Taproot <br>
&gt; before it becomes relevant. And even the unlikely worst case scenario =
would only cause short term disruption and <br>
&gt; wouldn&#39;t kill Bitcoin long term.<br>
&gt; <br>
&gt; On Thu, Feb 18, 2021 at 2:01 PM Matt Corallo &lt;<a href=3D"mailto:lf-=
lists@mattcorallo.com" target=3D"_blank">lf-lists@mattcorallo.com</a> &lt;m=
ailto:<a href=3D"mailto:lf-lists@mattcorallo.com" target=3D"_blank">lf-list=
s@mattcorallo.com</a>&gt;&gt; wrote:<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0If the eventual outcome is that different implement=
ations (that have material *transaction processing* userbases,<br>
&gt;=C2=A0 =C2=A0 =C2=A0and I=E2=80=99m not sure to what extent that=E2=80=
=99s true with Knots) ship different consensus rules, we should stop here a=
nd not<br>
&gt;=C2=A0 =C2=A0 =C2=A0activate Taproot. Seriously.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Bitcoin is a consensus system. The absolute worst o=
utcome at all possible is to have it fall out of consensus.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Matt<br>
&gt; <br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0On Feb 18, 2021, at 08:11, Michael Folkson via =
bitcoin-dev &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" ta=
rget=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0&lt;mailto:<a href=3D"mailto:bitcoin-dev@lists.=
linuxfoundation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.or=
g</a>&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0=EF=BB=BF<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0Right, that is one option. Personally I would p=
refer a Bitcoin Core release sets LOT=3Dfalse (based on what I have<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0heard from Bitcoin Core contributors) and a com=
munity effort releases a version with LOT=3Dtrue. I don&#39;t think users<b=
r>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0should be forced to choose something they may h=
ave no context on before they are allowed to use Bitcoin Core.<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0My current understanding is that roasbeef is pl=
anning to set LOT=3Dfalse on btcd (an alternative protocol<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0implementation to Bitcoin Core) and Luke Dashjr=
 hasn&#39;t yet decided on Bitcoin Knots.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0On Thu, Feb 18, 2021 at 11:52 AM ZmnSCPxj &lt;<=
a href=3D"mailto:ZmnSCPxj@protonmail.com" target=3D"_blank">ZmnSCPxj@proton=
mail.com</a> &lt;mailto:<a href=3D"mailto:ZmnSCPxj@protonmail.com" target=
=3D"_blank">ZmnSCPxj@protonmail.com</a>&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Good morning all,<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &quot;An activation mechanis=
m is a consensus change like any other change, can be contentious like any =
other<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0change, and we must resolve it li=
ke any other change. Otherwise we risk arriving at the darkest timeline.&qu=
ot;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; Who&#39;s we here?<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; Release both and let the net=
work decide.<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0A thing that could be done, witho=
ut mandating either LOT=3Dtrue or LOT=3Dfalse, would be to have a release t=
hat<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0requires a `taprootlot=3D1` or `t=
aprootlot=3D0` and refuses to start if the parameter is not set.<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0This assures everyone that neithe=
r choice is being forced on users, and instead what is being forced on user=
s,<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0is for users to make that choice =
themselves.<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Regards,<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0ZmnSCPxj<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; On Thu, Feb 18, 2021 at 3:08=
 AM Michael Folkson via bitcoin-dev &lt;<a href=3D"mailto:bitcoin-dev@lists=
.linuxfoundation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.o=
rg</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;mailto:<a href=3D"mailto:bitc=
oin-dev@lists.linuxfoundation.org" target=3D"_blank">bitcoin-dev@lists.linu=
xfoundation.org</a>&gt;&gt; wrote:<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; Thanks for your respons=
e Ariel. It would be useful if you responded to specific points I have made=
 in the<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0mailing list post or at least quo=
te these ephemeral &quot;people&quot; you speak of. I don&#39;t know if you=
&#39;re responding<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0to conversation on the IRC channe=
l or on social media etc.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; The argument comes=
 from a naive assumption that users MUST upgrade to the choice that is subm=
itted into<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0code. But in fact this isn&#39;t =
true and some voices in this discussion need to be more humble about what u=
sers<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0must or must not run.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; I personally have never=
 made this assumption. Of course users aren&#39;t forced to run any particu=
lar software<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0version, quite the opposite. Defa=
ults set in software versions matter though as many users won&#39;t change =
them.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; Does no one realiz=
e that it is a very possible outcome that if LOT=3Dtrue is released there m=
ay be only a<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0handful of people that begin runn=
ing it while everyone else delays their upgrade (with the very good reason =
of<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0not getting involved in politics)=
 and a year later those handful of people just become stuck at the moment o=
f<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0MUST_SIGNAL, unable to mine new b=
locks?<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; It is a possible outcom=
e but the likely outcome is that miners activate Taproot before LOT is even=
<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0relevant. I think it is prudent t=
o prepare for the unlikely but possible outcome that miners fail to activat=
e<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0and hence have this discussion no=
w rather than be unprepared for that eventuality. If LOT is set to false in=
 a<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0software release there is the pos=
sibility (T2 in<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://lists.linuxfou=
ndation.org/pipermail/bitcoin-dev/2021-February/018380.html" rel=3D"norefer=
rer" target=3D"_blank">https://lists.linuxfoundation.org/pipermail/bitcoin-=
dev/2021-February/018380.html</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"https://lists.linu=
xfoundation.org/pipermail/bitcoin-dev/2021-February/018380.html" rel=3D"nor=
eferrer" target=3D"_blank">https://lists.linuxfoundation.org/pipermail/bitc=
oin-dev/2021-February/018380.html</a>&gt;) of individuals or a<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0proportion of the community chang=
ing LOT to true. In that sense setting LOT=3Dfalse in a software release<br=
>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0appears to be no more safe than L=
OT=3Dtrue.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; The result: a wast=
ed year of waiting and a minority of people who didn&#39;t want to be lenie=
nt with miners<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0by default.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; There is the (unlikely =
but possible) possibility of a wasted year if LOT is set to false and miner=
s fail<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0to activate. I&#39;m not convince=
d by this perception that LOT=3Dtrue is antagonistic to miners. I actually =
think it<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0offers them clarity on what will =
happen over a year time period and removes the need for coordinated or<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0uncoordinated community UASF effo=
rts on top of LOT=3Dfalse.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; An activation mech=
anism is a consensus change like any other change, can be contentious like =
any other<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0change, and we must resolve it li=
ke any other change. Otherwise we risk arriving at the darkest timeline.<br=
>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; I don&#39;t know what y=
ou are recommending here to avoid &quot;this darkest timeline&quot;. Open d=
iscussions have<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0occurred and are continuing and i=
n my mailing list post that you responded to **I recommended we propose<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0LOT=3Dfalse be set in protocol im=
plementations such as Bitcoin Core**. I do think this apocalyptic language<=
br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0isn&#39;t particularly helpful. I=
n an open consensus system discussion is healthy, we should prepare for bad=
 or<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0worst case scenarios in advance a=
nd doing so is not antagonistic or destructive. Mining pools=C2=A0have pled=
ged<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0support for Taproot but we don&#3=
9;t build secure systems based on pledges of support, we build them to mini=
mize<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0trust in any human actors. We can=
 be grateful that people like Alejandro have worked hard on<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"http://taprootactivati=
on.com" rel=3D"noreferrer" target=3D"_blank">taprootactivation.com</a> &lt;=
<a href=3D"http://taprootactivation.com" rel=3D"noreferrer" target=3D"_blan=
k">http://taprootactivation.com</a>&gt; (and this effort has informed the d=
iscussion) without<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0taking pledges of support as cast=
 iron guarantees.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; TL;DR It sounds like yo=
u agree with my recommendation to set LOT=3Dfalse in protocol implementatio=
ns in my<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0email :)<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; On Thu, Feb 18, 2021 at=
 5:43 AM Ariel Lorenzo-Luaces &lt;<a href=3D"mailto:arielluaces@gmail.com" =
target=3D"_blank">arielluaces@gmail.com</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;mailto:<a href=3D"mailto:arie=
lluaces@gmail.com" target=3D"_blank">arielluaces@gmail.com</a>&gt;&gt; wrot=
e:<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; Something what str=
ikes me about the conversation is the emotion surrounding the letters UASF.=
<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; It appears as if p=
eople discuss UASF as if it&#39;s a massive tidal wave of support that is i=
nevitable, like<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0we saw during segwit activation. =
But the actual definition is &quot;any activation that is not a MASF&quot;.=
<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; A UASF can consist=
 of a single node, ten nodes, a thousand, half of all nodes, all business&#=
39; nodes, or<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0even all the non mining nodes. On=
 another dimension it can have zero mining support, 51% support, 49% suppor=
t,<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0or any support right up against a=
 miner activation threshold.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; Hell a UASF doesn&=
#39;t even need code or even a single node running as long as it exists as =
a possibility<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0in people&#39;s minds.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; The only thing a U=
ASF doesn&#39;t have is miner support above an agreed activation threshold =
(some number<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0above %51).<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; I say this because=
 it strikes me when people say that they are for LOT=3Dtrue with the logic =
that since a<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0UASF is guaranteed to happen then=
 it&#39;s better to just make it default from the beginning. Words like<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0coordination and safety are somet=
imes sprinkled into the argument.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; The argument comes=
 from a naive assumption that users MUST upgrade to the choice that is subm=
itted into<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0code. But in fact this isn&#39;t =
true and some voices in this discussion need to be more humble about what u=
sers<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0must or must not run.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; Does no one realiz=
e that it is a very possible outcome that if LOT=3Dtrue is released there m=
ay be only a<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0handful of people that begin runn=
ing it while everyone else delays their upgrade (with the very good reason =
of<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0not getting involved in politics)=
 and a year later those handful of people just become stuck at the moment o=
f<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0MUST_SIGNAL, unable to mine new b=
locks? Or attracting a minority of miners, activating, and forking off into=
 a<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0minority fork. Then a lot=3Dfalse=
 could be started that ends up activating the feature now that the stubborn=
<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0option has ran its course.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; The result: a wast=
ed year of waiting and a minority of people who didn&#39;t want to be lenie=
nt with miners<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0by default. The chains could be c=
alled BitcoinLenient and BitcoinStubborn.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; How is that strict=
ly safer or more coordinated?<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; I may be in the mi=
nority, or maybe a silent majority, or maybe a majority that just hasn&#39;=
t considered<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0this as a choice but honestly if =
there is contention about whether we&#39;re going to be stubborn or lenient=
 with<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0miners for Taproot and in the fut=
ure then I prefer to just not activate anything at all. I&#39;m fine for ca=
lling<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0bitcoin ossified, accepting that =
segwit is Bitcoin&#39;s last network upgrade. Taproot is amazing but no new=
<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0feature is worth a network split =
down the middle.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; Maybe in 10 or 20 =
years, when other blockchains implement features like Taproot and many more=
, we will<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0become envious enough to put asid=
e our differences on how to behave towards miners and finally activate Tapr=
oot.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; An activation mech=
anism is a consensus change like any other change, can be contentious like =
any other<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0change, and we must resolve it li=
ke any other change. Otherwise we risk arriving at the darkest timeline.<br=
>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; Cheers<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; Ariel Lorenzo-Luac=
es<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; On Feb 17, 2021, a=
t 7:05 AM, Michael Folkson via bitcoin-dev &lt;<a href=3D"mailto:bitcoin-de=
v@lists.linuxfoundation.org" target=3D"_blank">bitcoin-dev@lists.linuxfound=
ation.org</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;mailto:<a href=3D"mailto:bitc=
oin-dev@lists.linuxfoundation.org" target=3D"_blank">bitcoin-dev@lists.linu=
xfoundation.org</a>&gt;&gt; wrote:<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; Yesterday (Fe=
bruary 16th) we held a second meeting on Taproot<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; activation on=
 IRC which again was open to all. Despite what appeared<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; to be majorit=
y support for LOT=3Dfalse over LOT=3Dtrue in the first<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; meeting I (an=
d others) thought the arguments had not been explored in<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; depth and tha=
t we should have a follow up meeting almost entirely<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; focused on wh=
ether LOT (lockinontimeout) should be set to true or<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; false.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; The meeting w=
as announced here:<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; <a href=3D"ht=
tps://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-February/018380.=
html" rel=3D"noreferrer" target=3D"_blank">https://lists.linuxfoundation.or=
g/pipermail/bitcoin-dev/2021-February/018380.html</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"https://lists.linu=
xfoundation.org/pipermail/bitcoin-dev/2021-February/018380.html" rel=3D"nor=
eferrer" target=3D"_blank">https://lists.linuxfoundation.org/pipermail/bitc=
oin-dev/2021-February/018380.html</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; In that maili=
ng list post I outlined the arguments for LOT=3Dtrue (T1 to<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; T6) and argum=
ents for LOT=3Dfalse (F1 to F6) in their strongest form I<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; could. David =
Harding responded with an additional argument for<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; LOT=3Dfalse (=
F7) here:<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; <a href=3D"ht=
tps://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-February/018415.=
html" rel=3D"noreferrer" target=3D"_blank">https://lists.linuxfoundation.or=
g/pipermail/bitcoin-dev/2021-February/018415.html</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"https://lists.linu=
xfoundation.org/pipermail/bitcoin-dev/2021-February/018415.html" rel=3D"nor=
eferrer" target=3D"_blank">https://lists.linuxfoundation.org/pipermail/bitc=
oin-dev/2021-February/018415.html</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; These meeting=
s are very challenging given they are open to all, you<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; don=E2=80=99t=
 know who will attend and you don=E2=80=99t know most people=E2=80=99s view=
s in<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; advance. I tr=
ied to give time for both the LOT=3Dtrue arguments and the<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; LOT=3Dfalse a=
rguments to be discussed as I knew there was support for<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; both. We only=
 tried evaluating which had more support and which had<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; more strong o=
pposition towards the end of the meeting.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; The conversat=
ion log is here:<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; <a href=3D"ht=
tp://gnusha.org/taproot-activation/2021-02-16.log" rel=3D"noreferrer" targe=
t=3D"_blank">http://gnusha.org/taproot-activation/2021-02-16.log</a> &lt;<a=
 href=3D"http://gnusha.org/taproot-activation/2021-02-16.log" rel=3D"norefe=
rrer" target=3D"_blank">http://gnusha.org/taproot-activation/2021-02-16.log=
</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; (If you are s=
o inclined you can watch a video of the meeting here.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; Thanks to the=
 YouTube account =E2=80=9CBitcoin=E2=80=9D for setting up the livestream:<b=
r>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; <a href=3D"ht=
tps://www.youtube.com/watch?v=3Dvpl5q1ovMLM" rel=3D"noreferrer" target=3D"_=
blank">https://www.youtube.com/watch?v=3Dvpl5q1ovMLM</a> &lt;<a href=3D"htt=
ps://www.youtube.com/watch?v=3Dvpl5q1ovMLM" rel=3D"noreferrer" target=3D"_b=
lank">https://www.youtube.com/watch?v=3Dvpl5q1ovMLM</a>&gt;)<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; A summary of =
the meeting was provided by Luke Dashjr on Mastodon here:<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; <a href=3D"ht=
tps://bitcoinhackers.org/@lukedashjr/105742918779234566" rel=3D"noreferrer"=
 target=3D"_blank">https://bitcoinhackers.org/@lukedashjr/10574291877923456=
6</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"https://bitcoinhac=
kers.org/@lukedashjr/105742918779234566" rel=3D"noreferrer" target=3D"_blan=
k">https://bitcoinhackers.org/@lukedashjr/105742918779234566</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; Today&#39;s #=
Bitcoin #Taproot meeting was IMO largely unproductive, but we<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; did manage to=
 come to consensus on everything but LockinOnTimeout.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; Activation he=
ight range: 693504-745920<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; MASF threshol=
d: 1815/2016 blocks (90%)<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; Keep in mind =
only ~100 people showed for the meetings, hardly<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; representativ=
e of the entire community.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; So, these det=
ails remain JUST a proposal for now.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; It seems inev=
itable that there won&#39;t be consensus on LOT.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; Everyone will=
 have to choose for himself. :/<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; Personally I =
agree with most of this. I agree that there wasn=E2=80=99t<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; overwhelming =
consensus for either LOT=3Dtrue or LOT=3Dfalse. However, from<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; my perspectiv=
e there was clearly more strong opposition (what would<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; usually be de=
emed a NACK in Bitcoin Core review terminology) from<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; Bitcoin Core =
contributors, Lightning developers and other community<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; members again=
st LOT=3Dtrue than there was for LOT=3Dfalse. Andrew Chow<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; tried to summ=
arize views from the meeting in this analysis:<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; <a href=3D"ht=
tps://gist.github.com/achow101/3e179501290abb7049de198d46894c7c" rel=3D"nor=
eferrer" target=3D"_blank">https://gist.github.com/achow101/3e179501290abb7=
049de198d46894c7c</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"https://gist.githu=
b.com/achow101/3e179501290abb7049de198d46894c7c" rel=3D"noreferrer" target=
=3D"_blank">https://gist.github.com/achow101/3e179501290abb7049de198d46894c=
7c</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; I am also awa=
re of other current and previous Bitcoin Core<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; contributors =
and Lightning developers who didn=E2=80=99t attend the meeting in<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; person who ar=
e opposed to LOT=3Dtrue. I don=E2=80=99t want to put them in the<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; spotlight for=
 no reason but if you go through the conversation logs of<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; not only the =
meeting but the weeks of discussion prior to this meeting<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; you will see =
their views evaluated on the ##taproot-activation<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; channel. In a=
ddition, on <a href=3D"http://taprootactivation.com" rel=3D"noreferrer" tar=
get=3D"_blank">taprootactivation.com</a> &lt;<a href=3D"http://taprootactiv=
ation.com" rel=3D"noreferrer" target=3D"_blank">http://taprootactivation.co=
m</a>&gt; some mining pools<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; expressed a p=
reference for lot=3Dfalse though I don=E2=80=99t know how strong<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; that preferen=
ce was.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; I am only one=
 voice but it is my current assessment that if we are to<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; attempt to fi=
nalize Taproot activation parameters and propose them to<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; the community=
 at this time our only option is to propose LOT=3Dfalse.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; Any further d=
elay appears to me counterproductive in our collective<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; aim to get th=
e Taproot soft fork activated as early as possible.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; Obviously oth=
ers are free to disagree with that assessment and<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; continue disc=
ussions but personally I will be attempting to avoid<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; those discuss=
ions unless prominent new information comes to light or<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; various speci=
fic individuals change their minds.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; Next week we =
are planning a code review of the Bitcoin Core PR #19573<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; which was ini=
tially delayed because of this LOT discussion. As I=E2=80=99ve<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; said previous=
ly that will be loosely following the format of the<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; Bitcoin Core =
PR review club and will be lower level and more<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; technical. Th=
at is planned for Tuesday February 23rd at 19:00 UTC on<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; the IRC chann=
el ##taproot-activation.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; Thanks to the=
 meeting participants (and those who joined the<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; discussion on=
 the channel prior and post the meeting) for engaging<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; &gt; &gt; productively =
and in good faith.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; --<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; Michael Folkson<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; Email: <a href=3D"mailt=
o:michaelfolkson@gmail.com" target=3D"_blank">michaelfolkson@gmail.com</a> =
&lt;mailto:<a href=3D"mailto:michaelfolkson@gmail.com" target=3D"_blank">mi=
chaelfolkson@gmail.com</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; Keybase: michaelfolkson=
<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; PGP: 43ED C999 9F85 1D4=
0 EAF4 9835 92D6 0159 214C FEE3<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; _______________________=
________________________<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; bitcoin-dev mailing lis=
t<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; <a href=3D"mailto:bitco=
in-dev@lists.linuxfoundation.org" target=3D"_blank">bitcoin-dev@lists.linux=
foundation.org</a> &lt;mailto:<a href=3D"mailto:bitcoin-dev@lists.linuxfoun=
dation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a>&gt;=
<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; &gt; <a href=3D"https://list=
s.linuxfoundation.org/mailman/listinfo/bitcoin-dev" rel=3D"noreferrer" targ=
et=3D"_blank">https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-de=
v</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"https://lists.linu=
xfoundation.org/mailman/listinfo/bitcoin-dev" rel=3D"noreferrer" target=3D"=
_blank">https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a>&=
gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0-- <br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0Michael Folkson<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0Email: <a href=3D"mailto:michaelfolkson@gmail.c=
om" target=3D"_blank">michaelfolkson@gmail.com</a> &lt;mailto:<a href=3D"ma=
ilto:michaelfolkson@gmail.com" target=3D"_blank">michaelfolkson@gmail.com</=
a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0Keybase: michaelfolkson<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0PGP: 43ED C999 9F85 1D40 EAF4 9835 92D6 0159 21=
4C FEE3<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0_______________________________________________=
<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0bitcoin-dev mailing list<br>
&gt;&gt;=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> &lt;m=
ailto:<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_b=
lank">bitcoin-dev@lists.linuxfoundation.org</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0<a href=3D"https://lists.linuxfoundation.org/ma=
ilman/listinfo/bitcoin-dev" rel=3D"noreferrer" target=3D"_blank">https://li=
sts.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"https://lists.linuxfoundation.or=
g/mailman/listinfo/bitcoin-dev" rel=3D"noreferrer" target=3D"_blank">https:=
//lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a>&gt;<br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; -- <br>
&gt; Michael Folkson<br>
&gt; Email: <a href=3D"mailto:michaelfolkson@gmail.com" target=3D"_blank">m=
ichaelfolkson@gmail.com</a> &lt;mailto:<a href=3D"mailto:michaelfolkson@gma=
il.com" target=3D"_blank">michaelfolkson@gmail.com</a>&gt;<br>
&gt; Keybase: michaelfolkson<br>
&gt; PGP: 43ED C999 9F85 1D40 EAF4 9835 92D6 0159 214C FEE3<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" =
rel=3D"noreferrer" target=3D"_blank">https://lists.linuxfoundation.org/mail=
man/listinfo/bitcoin-dev</a><br>
</blockquote></div>

--0000000000001fd22805bb9da901--