summaryrefslogtreecommitdiff
path: root/b7/604bee09992f62cc5bfc1d897f1db36ac4261e
blob: 529e713daf96e1ec6e4fb95aec68a661e3707cb2 (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
Return-Path: <jtimon@jtimon.cc>
Received: from smtp2.osuosl.org (smtp2.osuosl.org [IPv6:2605:bc80:3010::133])
 by lists.linuxfoundation.org (Postfix) with ESMTP id 1D9C1C000E
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue, 29 Jun 2021 19:28:32 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
 by smtp2.osuosl.org (Postfix) with ESMTP id 0899C40134
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue, 29 Jun 2021 19:28:32 +0000 (UTC)
X-Virus-Scanned: amavisd-new at osuosl.org
X-Spam-Flag: NO
X-Spam-Score: -0.92
X-Spam-Level: 
X-Spam-Status: No, score=-0.92 tagged_above=-999 required=5
 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
 FROM_EXCESS_BASE64=0.979, HTML_MESSAGE=0.001,
 RCVD_IN_DNSWL_NONE=-0.0001] autolearn=no autolearn_force=no
Authentication-Results: smtp2.osuosl.org (amavisd-new);
 dkim=pass (2048-bit key) header.d=jtimon-cc.20150623.gappssmtp.com
Received: from smtp2.osuosl.org ([127.0.0.1])
 by localhost (smtp2.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id D-OLj56N8J7N
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue, 29 Jun 2021 19:28:29 +0000 (UTC)
X-Greylist: whitelisted by SQLgrey-1.8.0
Received: from mail-yb1-xb2c.google.com (mail-yb1-xb2c.google.com
 [IPv6:2607:f8b0:4864:20::b2c])
 by smtp2.osuosl.org (Postfix) with ESMTPS id 9BE3C40105
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue, 29 Jun 2021 19:28:29 +0000 (UTC)
Received: by mail-yb1-xb2c.google.com with SMTP id g19so690106ybe.11
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue, 29 Jun 2021 12:28:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=jtimon-cc.20150623.gappssmtp.com; s=20150623;
 h=mime-version:references:in-reply-to:from:date:message-id:subject:to
 :cc; bh=/wJQ/XNG0kHWM4qZJYd2gLPYqXod6d4cAAh0Oct0eE8=;
 b=WI30YpNzXSW/oeOPLz+j/FKN5SxyZhxtZTAH3b8wSVrZzIUwhL4w5Q1w5UqYg4ZjZs
 IIacAT/EZWF//9U8IcHs6T8yrOrcub/A2ytoCdOGbq0u/fXnJ1LrWpZCLlZrJ9JLUFu0
 jDNqJoV8DJXDObFQUqCLzLddrjL4oGT0MH5NN94y0vmPj+QvLkqUEiRYC7dzesTTAIs2
 XhvXNt/53DFQy5+jDhzLPSB9ezVbUvapS/A3t3RMtzGnbXiG7dF7CUeuf/kCzglnjElL
 rR4x2zdOxby9Lc48py5MskprDxZNTdnsfjYRmkModKvjVxCX8NnUiDYd+gLyUVGLkRkE
 p3zQ==
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=/wJQ/XNG0kHWM4qZJYd2gLPYqXod6d4cAAh0Oct0eE8=;
 b=XrejM3It/xkfMFlBljAI6Zpi5x3uvfk1mUM7xt7aLvK6Yy4st8gq1mS4J7Ehfe4KJW
 Tfg+8YpF+WWdhQ5O4Rw8w/nypczsXGeo43RwTneROKvoWRT+f09D5Hmkm7e0xi24VpfZ
 b6EP6lSuTDA2Xwy0aJy0CTIbOf0tKkGKcM70saikgBF4/SinLvpIVaHgMOIthcKWgrqJ
 9JYmgTLX9S3xcFK5/zQUh/UUxnWynoCWDDcfOLxAFylZRp8Ia1RpLnT6uazHxpGZ+Yuf
 O8FC9JbB9Uor2aisSfWy3oYJSOC5MGvBdj1vbWIn/CAAvedBLc5XhrVe3e7+YTsrOLdN
 jNPA==
X-Gm-Message-State: AOAM532TZ03OHJIDlGVLx+WHg2PP4JgHK6bUtjhQXFy0RfroSFL4lWj0
 zIY6uXMvN1ZwzC9TynS6xbZ1aPqkfdqWYAaEyoLzJw==
X-Google-Smtp-Source: ABdhPJwCFNXhNKcP6P8HsZcnFh1G6VRMX83Vz+x93PjLRNBzXTrFvPKx2tbjhrpRDA3ZVWJG3DzXvKVOEUvS0rKS9pk=
X-Received: by 2002:a25:e756:: with SMTP id e83mr19967558ybh.133.1624994908102; 
 Tue, 29 Jun 2021 12:28:28 -0700 (PDT)
MIME-Version: 1.0
References: <202106291755.11926.luke@dashjr.org>
 <B06FB5CC-646E-4AB9-AE06-83F41D0DDB63@voskuil.org>
In-Reply-To: <B06FB5CC-646E-4AB9-AE06-83F41D0DDB63@voskuil.org>
From: =?UTF-8?B?Sm9yZ2UgVGltw7Nu?= <jtimon@jtimon.cc>
Date: Tue, 29 Jun 2021 20:28:20 +0100
Message-ID: <CABm2gDot=YnMB8isbouLV_g=P=OAeN7H966juqbBexXyK9jw8A@mail.gmail.com>
To: Eric Voskuil <eric@voskuil.org>
Content-Type: multipart/alternative; boundary="00000000000042709205c5ec9c42"
X-Mailman-Approved-At: Tue, 29 Jun 2021 21:16:54 +0000
Cc: Bitcoin Protocol Discussion <bitcoin-dev@lists.linuxfoundation.org>,
 Billy Tetrud <billy.tetrud@gmail.com>
Subject: Re: [bitcoin-dev] Trinary Version Signaling for softfork upgrades
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: Tue, 29 Jun 2021 19:28:32 -0000

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

"Confirmation" isn't needed for softforks. Miners controlling confirmation
doesn't mean miners control the rules, they never did. Read section 11 of
the bitcoin paper "even with a majority of hashrate one cannot arbitrarily
change rules or forge signatures.

You may say users chosing the rules is "politicial". Isn't miners deciding
them for users more political? Whatever you call it, it is still how free
software works: users decide what to run.
It is extremely disappointing to see how few developers seem to ubderstand
this, or even care about users deciding or miners not deciding the rules.
How can we expect users to understand bitcoin when most developers don't
seem to understand it?

It is really sad.

On Tue, Jun 29, 2021, 19:17 Eric Voskuil <eric@voskuil.org> wrote:

>
> > On Jun 29, 2021, at 10:55, Luke Dashjr <luke@dashjr.org> wrote:
> >
> > =EF=BB=BFThe only alternative to a split in the problematic scenarios a=
re 1)
> concede
> > centralised miner control over the network,
>
> Miners control confirmation, entirely.
>
> This is the nature of bitcoin. And merchants control validation, entirely=
.
> Anyone can be a miner or a merchant. Neither is inherently =E2=80=9Cbette=
r=E2=80=9D than
> the other. The largest merchants are likely a handful of exchanges, likel=
y
> at least as centralized as miners are pooled.
>
> Splitting does not change this.
>
> > and 2) have inconsistent
> > enforcement of rules by users who don't agree on what the correct rules
> are,
>
> There are no =E2=80=9Ccorrect=E2=80=9D rules. Whatever rules one enforces=
 determine what
> network he chooses to participate in.
>
> > again leading to centralised miner control over the network.
>
> Leading to? Miners control confirmation, always. Whether that is
> centralized, just as with merchanting, is up to individuals.
>
> > In other words, in this context, accepting a split between disagreeing
> users
> > is the ONLY way Bitcoin can possibly continue as a decentralised
> currency.
>
> No, it is not. You are proposing splitting as the method of censorship
> resistance inherent to Bitcoin. Coordinating this split requires
> coordinated action. The whole point of bitcoin is coordinate that action
> based on mining (proof of work). Replacing that with a political process =
is
> just a reversion to political money.
>
> > Making that split as clean and well-defined as possible not only ensure=
s
> the
> > best opportunity for both sides of the disagreement,
>
> Trivially accomplished, just change a rule. This isn=E2=80=99t about that=
. It=E2=80=99s
> about how one gets others to go along with the new coin, or stay with the
> old. An entirely political process, which is clearly evident from the
> campaigns around such attempts.
>
> > but also minimises the
> > risk that the split occurs at all (since the "losing" side needs to
> concede,
> > rather than passively continue the disagreement ongoing after the
> attempted
> > protocol change).
>
> Nobody =E2=80=9Cneeds to=E2=80=9D concede once a split has occurred, whic=
h is evident in
> existing splits.
>
> e
>
> > Luke
> >
> >
> >> On Tuesday 29 June 2021 08:44:56 Eric Voskuil wrote:
> >> At least we are now acknowledging that splitting is what it=E2=80=99s =
about.
> That=E2=80=99s
> >> progress.
> >>
> >> e
> >>
> >>>> On Jun 29, 2021, at 01:32, Jorge Tim=C3=B3n <jtimon@jtimon.cc> wrote=
:
> >>>
> >>> =EF=BB=BF
> >>> I think the option of "permanent failure because miners veto" should
> >>> actually be abandoned. No, I don't think we should avoid splits when
> >>> possible, I don't think we should avoid splits at all costs.
> >>>
> >>>> On Sun, Jun 27, 2021, 19:12 Billy Tetrud <billy.tetrud@gmail.com>
> wrote:
> >>>> @Luke
> >>>>
> >>>>> They can still slow it down.
> >>>>
> >>>> Absolutely. However I think that the option of permanent failure is
> >>>> important. It certainly would be ideal to ensure that enough bitcoin
> >>>> users support the upgrade *before* releasing it, however realistical=
ly
> >>>> this can never be more than an estimate, and estimates can sometimes
> be
> >>>> wildly wrong. It would be unfortunate if miners had a substantially
> >>>> different estimate of user support than the people putting in the wo=
rk
> >>>> to release bitcoin upgrades. Even if upgrades are never released
> before
> >>>> it becomes clear that a large supermajority of users want the upgrad=
e,
> >>>> if miners don't agree with the estimate a harmful chain split could
> >>>> occur. And I agree with Eric that the goal here is to prevent a chai=
n
> >>>> split during an upgrade when possible. This includes permanent failu=
re
> >>>> of an upgrade when there is unexpectedly large miner opposition.
> >>>>
> >>>> This of course does not prevent a UASF-style deployment to be done
> after
> >>>> an initial failure to deploy occurs. My proposal is essentially a
> >>>> mechanism to improve upon the speedy-trial idea, allowing for even
> >>>> speedier releases (than speedy trial) without adding additional risk
> of
> >>>> undesired chain splits.
> >>>>
> >>>>> [BIP8] already has the trinary state you seem to be describing
> >>>>
> >>>> It sounds like you're saying the trinary state of BIP8 is A. Follow
> the
> >>>> longest chain, B. Follow the upgrade chain, or C. follow the
> >>>> non-upgraded chain. I agree. However the trinary state in my proposa=
l
> is
> >>>> materially different - it is the signaling itself that is trinary, n=
ot
> >>>> just which chain is being followed. This allows others to know and
> make
> >>>> programmatic decisions (in software) based on that signaling. I'm su=
re
> >>>> you can agree that does not exist in BIP8.
> >>>>
> >>>>> No additional bit is needed, as softforks are coordinated between
> >>>>> users, NOT miners
> >>>>
> >>>> And yet there is miner involvement, as you rightly pointed out. Mine=
rs
> >>>> are needed to set the nVersion in the header. So when you say "no
> >>>> additional bit is needed", could you please be clearer as to what yo=
u
> >>>> mean? Do you mean that signaling of opposition in a block can be don=
e
> >>>> without any "additional bit"? Or are you just saying that it is
> >>>> redundant to consider what miners might be opposing an upgrade?
> >>>>
> >>>> @Jorge
> >>>>
> >>>>> If different users want different incompatible things... there's no
> >>>>> way to avoid the split
> >>>>
> >>>> I agree. This happened with bcash, and that's fine. It was painful,
> but
> >>>> there were a significant amount of users that disagreed, and they ha=
ve
> >>>> the chain they want now.
> >>>>
> >>>> But we generally all want to avoid a chain split when possible.
> Because
> >>>> chain splits have a cost, and that cost can be high, its likely that
> >>>> many users would rather choose the chain with the most support rathe=
r
> >>>> than choosing the chain with their preferred rules.
> >>>>
> >>>> However, the question here is: how do we estimate what fraction of
> users
> >>>> wants which rules? We don't have a divining rod to determine with
> >>>> certainty what users want. We can only make polls of various levels =
of
> >>>> inaccuracy. The methods bitcoin has been using is community discussi=
on
> >>>> and social consensus estimation as well as miner signaling during th=
e
> >>>> actual deployment period. Neither of these are perfect, but they are
> >>>> both reasonable enough mechanisms. However, because both of these
> >>>> mechanisms are very rough estimates of user sentiment, we need to
> >>>> consider the possibility that sometimes the estimate may be
> >>>> substantially inaccurate when we design deployment procedures. This
> >>>> inaccuracy is why we need multiple barriers in place for an upgrade,
> and
> >>>> why we need to have higher thresholds of success (require larger
> >>>> supermajorities in both consensus and miner signaling).
> >>>>
> >>>> Developers obviously care about bitcoin and have an incentive
> (personal
> >>>> and probably financial) to do it right. And miners have both an
> >>>> incentive to keep the system healthy, as well as an incentive to min=
e
> on
> >>>> the chain that the economic majority of users is using. But measurin=
g
> >>>> the consensus of the bitcoin community can be extraordinarily
> difficult
> >>>> to do with consistent accuracy, and so I think miner signaling as it
> has
> >>>> been used as a second barrier to entry for an upgrade is quite
> >>>> appropriate.
> >>>>
> >>>>> On Sun, Jun 27, 2021 at 2:22 AM Eric Voskuil <eric@voskuil.org>
> wrote:
> >>>>> I have not objected to anyone splitting. As I said, a split is alwa=
ys
> >>>>> possible, and of course has been done on a large scale. It is only
> the
> >>>>> misleading statements about inherent soft fork =E2=80=9Ccompatibili=
ty=E2=80=9D and
> the
> >>>>> implication that activation without hash power enforcement does not
> >>>>> create a split that I object to. People who know better should be
> >>>>> honest about it.
> >>>>>
> >>>>> Far too many people have been led to believe there is some sort of
> >>>>> activation choice with =E2=80=9Censured=E2=80=9D equal outcomes (ma=
ybe =E2=80=9Cslowed
> down=E2=80=9D).
> >>>>> There is only a choice between creating a split and hash power
> >>>>> enforcement. Soft forks are rule changes, and thereby incompatible =
-
> >>>>> unless enforced by majority hash power.
> >>>>>
> >>>>> The statements below are grossly misleading and need to be called o=
ut
> >>>>> as such so that people can actually make this decision you speak of=
.
> >>>>> This idea that =E2=80=9Cusers=E2=80=9D decide the rules is not the =
question. The
> >>>>> question is only how to avoid a split. If one does not care he can
> >>>>> split at any time, no discussion required.
> >>>>>
> >>>>> e
> >>>>>
> >>>>>> On Jun 27, 2021, at 01:47, Jorge Tim=C3=B3n <jtimon@jtimon.cc> wro=
te:
> >>>>>>
> >>>>>> =EF=BB=BFIf different users want different incompatible things (en=
ough on
> >>>>>> each side), there's no way to avoid the split. We shouldn't try to
> >>>>>> avoid such a split.
> >>>>>> Users decide the rules, not miners nor developers.
> >>>>>>
> >>>>>>> On Sun, Jun 27, 2021 at 12:05 AM Eric Voskuil via bitcoin-dev
> >>>>>>> <bitcoin-dev@lists.linuxfoundation.org> wrote:
> >>>>>>>
> >>>>>>> Ultimately there is only one answer to this question. Get majorit=
y
> >>>>>>> hash power support.
> >>>>>>>
> >>>>>>> Soft fork enforcement is the same act as any other censorship
> >>>>>>> enforcement, the difference is only a question of what people wan=
t.
> >>>>>>> Given that there is no collective =E2=80=9Cwe=E2=80=9D, those wan=
ts differ. Bitcoin
> >>>>>>> resolves this question of conflicting wants, but it is not a
> >>>>>>> democracy, it=E2=80=99s a market. One votes by trading.
> >>>>>>>
> >>>>>>> If one wants to enforce a soft fork (or otherwise censor) this is
> >>>>>>> accomplished by mining (or paying others to do so). Anyone can
> mine,
> >>>>>>> so everyone gets a say. Mining is trading capital now for more
> >>>>>>> later. If enough people want to do that, they can enforce a soft
> >>>>>>> fork. It=E2=80=99s time Bitcoiners stop thinking of miners as oth=
er people.
> >>>>>>> Anyone can mine, and that=E2=80=99s your vote.
> >>>>>>>
> >>>>>>> Otherwise, as mentioned below, anyone can start a new coin. But
> it=E2=80=99s
> >>>>>>> dishonest to imply that one can do this and all others will surel=
y
> >>>>>>> follow. This cannot be known, it=E2=80=99s merely a gamble. And i=
t=E2=80=99s one
> >>>>>>> that has been shown to not always pay off.
> >>>>>>>
> >>>>>>> e
> >>>>>>>
> >>>>>>>>> On Jun 26, 2021, at 14:43, Eric Voskuil <eric@voskuil.org>
> wrote:
> >>>>>>>>
> >>>>>>>> =EF=BB=BFFor some definitions of =E2=80=9Cblock=E2=80=9D.
> >>>>>>>>
> >>>>>>>> Without majority hash power support, activation simply means you
> >>>>>>>> are off on a chain split. Anyone can of course split off from a
> >>>>>>>> chain by changing a rule (soft or otherwise) at any time, so thi=
s
> >>>>>>>> is a bit of an empty claim.
> >>>>>>>>
> >>>>>>>> Nobody can stop a person from splitting. The relevant question i=
s
> >>>>>>>> how to *prevent* a split. And activation without majority hash
> >>>>>>>> power certainly does not =E2=80=9Censure=E2=80=9D this.
> >>>>>>>>
> >>>>>>>> e
> >>>>>>>>
> >>>>>>>>> On Jun 26, 2021, at 14:13, Luke Dashjr via bitcoin-dev
> >>>>>>>>> <bitcoin-dev@lists.linuxfoundation.org> wrote:
> >>>>>>>>>
> >>>>>>>>> =EF=BB=BFBIP8 LOT=3DTrue just ensures miners cannot block an up=
grade
> >>>>>>>>> entirely. They can still slow it down.
> >>>>>>>>>
> >>>>>>>>> It also already has the trinary state you seem to be describing
> >>>>>>>>> (although perhaps this could be better documented in the BIP):
> >>>>>>>>> users who oppose the softfork can and should treat the successf=
ul
> >>>>>>>>> signal (whether MASF or UASF) as invalid, thereby ensuring they
> do
> >>>>>>>>> not follow a chain with the rules in force.
> >>>>>>>>>
> >>>>>>>>> No additional bit is needed, as softforks are coordinated betwe=
en
> >>>>>>>>> users, NOT miners (who have no particular say in them, aside fr=
om
> >>>>>>>>> their role as also being users). The miner involvement is only
> out
> >>>>>>>>> of necessity (to set the bit in the header, which users
> coordinate
> >>>>>>>>> with) and potentially to accelerate activation by protecting
> >>>>>>>>> upgrade-lagging users.
> >>>>>>>>>
> >>>>>>>>> Luke
> >>>>>>>>>
> >>>>>>>>>>> On Saturday 26 June 2021 20:21:52 Billy Tetrud via bitcoin-de=
v
> >>>>>>>>>>> wrote:
> >>>>>>>>>>
> >>>>>>>>>> Given the recent controversy over upgrade mechanisms for the
> >>>>>>>>>> non-controversial taproot upgrade, I have been thinking about
> >>>>>>>>>> ways to solve the problems that both sides brought up. In shor=
t,
> >>>>>>>>>> BIP8 LOT=3Dtrue proponents make the point that lazy miners fai=
ling
> >>>>>>>>>> to upgrade in a timely manner slow down releases of bitcoin
> >>>>>>>>>> upgrades, and BIP9 / BIP8 LOT=3Dfalse proponents make the poin=
t
> >>>>>>>>>> that LOT=3Dtrue can lead to undesirable forks that might cause=
 a
> >>>>>>>>>> lot of chaos. I believe both points are essentially correct an=
d
> >>>>>>>>>> have created a proposal
> >>>>>>>>>> <
> https://github.com/fresheneesz/bip-trinary-version-signaling/blo
> >>>>>>>>>> b/master/b ip-trinary-version-bits.md> for soft fork upgrades
> that
> >>>>>>>>>> solve both problems.
> >>>>>>>>>>
> >>>>>>>>>> The proposal uses trinary version signaling rather than binary
> >>>>>>>>>> signaling. For any particular prospective soft fork upgrade,
> this
> >>>>>>>>>> allows for three signaling states:
> >>>>>>>>>>
> >>>>>>>>>> * Actively support the change.
> >>>>>>>>>> * Actively oppose the change.
> >>>>>>>>>> * Not signaling (neither support or oppose). This is the defau=
lt
> >>>>>>>>>> state.
> >>>>>>>>>>
> >>>>>>>>>> Using this additional information, we can release
> non-contentious
> >>>>>>>>>> upgrades much quicker (with a much lower percent of miners
> >>>>>>>>>> signaling support). For contentious upgrades, miners who oppos=
e
> >>>>>>>>>> the change are incentivized to update their software to a
> version
> >>>>>>>>>> that can actively signal opposition to the change. The more
> >>>>>>>>>> opposition there is, the higher the threshold necessary to loc=
k
> >>>>>>>>>> in the upgrade. With the parameters I currently recommended in
> >>>>>>>>>> the proposal, this chart shows how much support signaling woul=
d
> >>>>>>>>>> be necessary given a particular amount of active opposition
> >>>>>>>>>> signaling:
> >>>>>>>>>>
> >>>>>>>>>> [image: thresholdChart.png]
> >>>>>>>>>> If literally no one signals opposition, a 60% threshold should
> be
> >>>>>>>>>> relatively safe because it is a supermajority amount that is
> >>>>>>>>>> unlikely to change significantly very quickly (ie if 60% of
> >>>>>>>>>> miners support the change today, its unlikely that less than a
> >>>>>>>>>> majority of miners would support the change a year or two from
> >>>>>>>>>> now), and if no one is signaling opposition, chances are that
> the
> >>>>>>>>>> vast majority of the other 40% would also eventually signal
> >>>>>>>>>> support.
> >>>>>>>>>>
> >>>>>>>>>> This both gives an incentive for "lazy" miners to upgrade if
> they
> >>>>>>>>>> actually oppose the change while at the same time allowing the=
se
> >>>>>>>>>> lazy miners to remain lazy without slowing down the soft fork
> >>>>>>>>>> activation much.
> >>>>>>>>>>
> >>>>>>>>>> I think now is the right time to discuss new soft fork upgrade
> >>>>>>>>>> mechanisms, when there are no pressing soft fork upgrades read=
y
> >>>>>>>>>> to deploy. Waiting until we need to deploy a soft fork to
> discuss
> >>>>>>>>>> this will only delay things and cause contention again like it
> >>>>>>>>>> did with taproot.
> >>>>>>>>>>
> >>>>>>>>>> I'm very curious to know what people think of this mechanism. =
I
> >>>>>>>>>> would appreciate any comments here, or written as github issue=
s
> >>>>>>>>>> on the proposal repo itself.
> >>>>>>>>>>
> >>>>>>>>>> Thanks,
> >>>>>>>>>> BT
> >>>>>>>>>
> >>>>>>>>> _______________________________________________
> >>>>>>>>> bitcoin-dev mailing list
> >>>>>>>>> bitcoin-dev@lists.linuxfoundation.org
> >>>>>>>>> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
> >>>>>>>
> >>>>>>> _______________________________________________
> >>>>>>> bitcoin-dev mailing list
> >>>>>>> bitcoin-dev@lists.linuxfoundation.org
> >>>>>>> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
> >
>

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

<div dir=3D"auto">&quot;Confirmation&quot; isn&#39;t needed for softforks. =
Miners controlling confirmation doesn&#39;t mean miners control the rules, =
they never did. Read section 11 of the bitcoin paper &quot;even with a majo=
rity of hashrate one cannot arbitrarily change rules or forge signatures.<d=
iv dir=3D"auto"><br></div><div dir=3D"auto">You may say users chosing the r=
ules is &quot;politicial&quot;. Isn&#39;t miners deciding them for users mo=
re political? Whatever you call it, it is still how free software works: us=
ers decide what to run.</div><div dir=3D"auto">It is extremely disappointin=
g to see how few developers seem to ubderstand this, or even care about use=
rs deciding or miners not deciding the rules.</div><div dir=3D"auto">How ca=
n we expect users to understand bitcoin when most developers don&#39;t seem=
 to understand it?</div><div dir=3D"auto"><br></div><div dir=3D"auto">It is=
 really sad.</div></div><br><div class=3D"gmail_quote"><div dir=3D"ltr" cla=
ss=3D"gmail_attr">On Tue, Jun 29, 2021, 19:17 Eric Voskuil &lt;<a href=3D"m=
ailto:eric@voskuil.org">eric@voskuil.org</a>&gt; wrote:<br></div><blockquot=
e class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc sol=
id;padding-left:1ex"><br>
&gt; On Jun 29, 2021, at 10:55, Luke Dashjr &lt;<a href=3D"mailto:luke@dash=
jr.org" target=3D"_blank" rel=3D"noreferrer">luke@dashjr.org</a>&gt; wrote:=
<br>
&gt; <br>
&gt; =EF=BB=BFThe only alternative to a split in the problematic scenarios =
are 1) concede <br>
&gt; centralised miner control over the network,<br>
<br>
Miners control confirmation, entirely.<br>
<br>
This is the nature of bitcoin. And merchants control validation, entirely. =
Anyone can be a miner or a merchant. Neither is inherently =E2=80=9Cbetter=
=E2=80=9D than the other. The largest merchants are likely a handful of exc=
hanges, likely at least as centralized as miners are pooled.<br>
<br>
Splitting does not change this.<br>
<br>
&gt; and 2) have inconsistent <br>
&gt; enforcement of rules by users who don&#39;t agree on what the correct =
rules are, <br>
<br>
There are no =E2=80=9Ccorrect=E2=80=9D rules. Whatever rules one enforces d=
etermine what network he chooses to participate in.<br>
<br>
&gt; again leading to centralised miner control over the network.<br>
<br>
Leading to? Miners control confirmation, always. Whether that is centralize=
d, just as with merchanting, is up to individuals.<br>
<br>
&gt; In other words, in this context, accepting a split between disagreeing=
 users <br>
&gt; is the ONLY way Bitcoin can possibly continue as a decentralised curre=
ncy.<br>
<br>
No, it is not. You are proposing splitting as the method of censorship resi=
stance inherent to Bitcoin. Coordinating this split requires coordinated ac=
tion. The whole point of bitcoin is coordinate that action based on mining =
(proof of work). Replacing that with a political process is just a reversio=
n to political money.<br>
<br>
&gt; Making that split as clean and well-defined as possible not only ensur=
es the <br>
&gt; best opportunity for both sides of the disagreement,<br>
<br>
Trivially accomplished, just change a rule. This isn=E2=80=99t about that. =
It=E2=80=99s about how one gets others to go along with the new coin, or st=
ay with the old. An entirely political process, which is clearly evident fr=
om the campaigns around such attempts.<br>
<br>
&gt; but also minimises the <br>
&gt; risk that the split occurs at all (since the &quot;losing&quot; side n=
eeds to concede, <br>
&gt; rather than passively continue the disagreement ongoing after the atte=
mpted <br>
&gt; protocol change).<br>
<br>
Nobody =E2=80=9Cneeds to=E2=80=9D concede once a split has occurred, which =
is evident in existing splits.<br>
<br>
e<br>
<br>
&gt; Luke<br>
&gt; <br>
&gt; <br>
&gt;&gt; On Tuesday 29 June 2021 08:44:56 Eric Voskuil wrote:<br>
&gt;&gt; At least we are now acknowledging that splitting is what it=E2=80=
=99s about. That=E2=80=99s<br>
&gt;&gt; progress.<br>
&gt;&gt; <br>
&gt;&gt; e<br>
&gt;&gt; <br>
&gt;&gt;&gt;&gt; On Jun 29, 2021, at 01:32, Jorge Tim=C3=B3n &lt;jtimon@jti=
mon.cc&gt; wrote:<br>
&gt;&gt;&gt; <br>
&gt;&gt;&gt; =EF=BB=BF<br>
&gt;&gt;&gt; I think the option of &quot;permanent failure because miners v=
eto&quot; should<br>
&gt;&gt;&gt; actually be abandoned. No, I don&#39;t think we should avoid s=
plits when<br>
&gt;&gt;&gt; possible, I don&#39;t think we should avoid splits at all cost=
s.<br>
&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt; On Sun, Jun 27, 2021, 19:12 Billy Tetrud &lt;<a href=3D"ma=
ilto:billy.tetrud@gmail.com" target=3D"_blank" rel=3D"noreferrer">billy.tet=
rud@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt; @Luke<br>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt; They can still slow it down.<br>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt; Absolutely. However I think that the option of permanent f=
ailure is<br>
&gt;&gt;&gt;&gt; important. It certainly would be ideal to ensure that enou=
gh bitcoin<br>
&gt;&gt;&gt;&gt; users support the upgrade *before* releasing it, however r=
ealistically<br>
&gt;&gt;&gt;&gt; this can never be more than an estimate, and estimates can=
 sometimes be<br>
&gt;&gt;&gt;&gt; wildly wrong. It would be unfortunate if miners had a subs=
tantially<br>
&gt;&gt;&gt;&gt; different estimate of user support than the people putting=
 in the work<br>
&gt;&gt;&gt;&gt; to release bitcoin upgrades. Even if upgrades are never re=
leased before<br>
&gt;&gt;&gt;&gt; it becomes clear that a large supermajority of users want =
the upgrade,<br>
&gt;&gt;&gt;&gt; if miners don&#39;t agree with the estimate a harmful chai=
n split could<br>
&gt;&gt;&gt;&gt; occur. And I agree with Eric that the goal here is to prev=
ent a chain<br>
&gt;&gt;&gt;&gt; split during an upgrade when possible. This includes perma=
nent failure<br>
&gt;&gt;&gt;&gt; of an upgrade when there is unexpectedly large miner oppos=
ition.<br>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt; This of course does not prevent a UASF-style deployment to=
 be done after<br>
&gt;&gt;&gt;&gt; an initial failure to deploy occurs. My proposal is essent=
ially a<br>
&gt;&gt;&gt;&gt; mechanism to improve upon the speedy-trial idea, allowing =
for even<br>
&gt;&gt;&gt;&gt; speedier releases (than speedy trial) without adding addit=
ional risk of<br>
&gt;&gt;&gt;&gt; undesired chain splits.<br>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt; [BIP8] already has the trinary state you seem to be de=
scribing<br>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt; It sounds like you&#39;re saying the trinary state of BIP8=
 is A. Follow the<br>
&gt;&gt;&gt;&gt; longest chain, B. Follow the upgrade chain, or C. follow t=
he<br>
&gt;&gt;&gt;&gt; non-upgraded chain. I agree. However the trinary state in =
my proposal is<br>
&gt;&gt;&gt;&gt; materially different - it is the signaling itself that is =
trinary, not<br>
&gt;&gt;&gt;&gt; just which chain is being followed. This allows others to =
know and make<br>
&gt;&gt;&gt;&gt; programmatic decisions (in software) based on that signali=
ng. I&#39;m sure<br>
&gt;&gt;&gt;&gt; you can agree that does not exist in BIP8.<br>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt; No additional bit is needed, as softforks are coordina=
ted between<br>
&gt;&gt;&gt;&gt;&gt; users, NOT miners<br>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt; And yet there is miner involvement, as you rightly pointed=
 out. Miners<br>
&gt;&gt;&gt;&gt; are needed to set the nVersion in the header. So when you =
say &quot;no<br>
&gt;&gt;&gt;&gt; additional bit is needed&quot;, could you please be cleare=
r as to what you<br>
&gt;&gt;&gt;&gt; mean? Do you mean that signaling of opposition in a block =
can be done<br>
&gt;&gt;&gt;&gt; without any &quot;additional bit&quot;? Or are you just sa=
ying that it is<br>
&gt;&gt;&gt;&gt; redundant to consider what miners might be opposing an upg=
rade?<br>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt; @Jorge<br>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt; If different users want different incompatible things.=
.. there&#39;s no<br>
&gt;&gt;&gt;&gt;&gt; way to avoid the split<br>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt; I agree. This happened with bcash, and that&#39;s fine. It=
 was painful, but<br>
&gt;&gt;&gt;&gt; there were a significant amount of users that disagreed, a=
nd they have<br>
&gt;&gt;&gt;&gt; the chain they want now.<br>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt; But we generally all want to avoid a chain split when poss=
ible. Because<br>
&gt;&gt;&gt;&gt; chain splits have a cost, and that cost can be high, its l=
ikely that<br>
&gt;&gt;&gt;&gt; many users would rather choose the chain with the most sup=
port rather<br>
&gt;&gt;&gt;&gt; than choosing the chain with their preferred rules.<br>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt; However, the question here is: how do we estimate what fra=
ction of users<br>
&gt;&gt;&gt;&gt; wants which rules? We don&#39;t have a divining rod to det=
ermine with<br>
&gt;&gt;&gt;&gt; certainty what users want. We can only make polls of vario=
us levels of<br>
&gt;&gt;&gt;&gt; inaccuracy. The methods bitcoin has been using is communit=
y discussion<br>
&gt;&gt;&gt;&gt; and social consensus estimation as well as miner signaling=
 during the<br>
&gt;&gt;&gt;&gt; actual deployment period. Neither of these are perfect, bu=
t they are<br>
&gt;&gt;&gt;&gt; both reasonable enough mechanisms. However, because both o=
f these<br>
&gt;&gt;&gt;&gt; mechanisms are very rough estimates of user sentiment, we =
need to<br>
&gt;&gt;&gt;&gt; consider the possibility that sometimes the estimate may b=
e<br>
&gt;&gt;&gt;&gt; substantially inaccurate when we design deployment procedu=
res. This<br>
&gt;&gt;&gt;&gt; inaccuracy is why we need multiple barriers in place for a=
n upgrade, and<br>
&gt;&gt;&gt;&gt; why we need to have higher thresholds of success (require =
larger<br>
&gt;&gt;&gt;&gt; supermajorities in both consensus and miner signaling).<br=
>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt; Developers obviously care about bitcoin and have an incent=
ive (personal<br>
&gt;&gt;&gt;&gt; and probably financial) to do it right. And miners have bo=
th an<br>
&gt;&gt;&gt;&gt; incentive to keep the system healthy, as well as an incent=
ive to mine on<br>
&gt;&gt;&gt;&gt; the chain that the economic majority of users is using. Bu=
t measuring<br>
&gt;&gt;&gt;&gt; the consensus of the bitcoin community can be extraordinar=
ily difficult<br>
&gt;&gt;&gt;&gt; to do with consistent accuracy, and so I think miner signa=
ling as it has<br>
&gt;&gt;&gt;&gt; been used as a second barrier to entry for an upgrade is q=
uite<br>
&gt;&gt;&gt;&gt; appropriate.<br>
&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt; On Sun, Jun 27, 2021 at 2:22 AM Eric Voskuil &lt;<a hr=
ef=3D"mailto:eric@voskuil.org" target=3D"_blank" rel=3D"noreferrer">eric@vo=
skuil.org</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt; I have not objected to anyone splitting. As I said, a =
split is always<br>
&gt;&gt;&gt;&gt;&gt; possible, and of course has been done on a large scale=
. It is only the<br>
&gt;&gt;&gt;&gt;&gt; misleading statements about inherent soft fork =E2=80=
=9Ccompatibility=E2=80=9D and the<br>
&gt;&gt;&gt;&gt;&gt; implication that activation without hash power enforce=
ment does not<br>
&gt;&gt;&gt;&gt;&gt; create a split that I object to. People who know bette=
r should be<br>
&gt;&gt;&gt;&gt;&gt; honest about it.<br>
&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt; Far too many people have been led to believe there is =
some sort of<br>
&gt;&gt;&gt;&gt;&gt; activation choice with =E2=80=9Censured=E2=80=9D equal=
 outcomes (maybe =E2=80=9Cslowed down=E2=80=9D).<br>
&gt;&gt;&gt;&gt;&gt; There is only a choice between creating a split and ha=
sh power<br>
&gt;&gt;&gt;&gt;&gt; enforcement. Soft forks are rule changes, and thereby =
incompatible -<br>
&gt;&gt;&gt;&gt;&gt; unless enforced by majority hash power.<br>
&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt; The statements below are grossly misleading and need t=
o be called out<br>
&gt;&gt;&gt;&gt;&gt; as such so that people can actually make this decision=
 you speak of.<br>
&gt;&gt;&gt;&gt;&gt; This idea that =E2=80=9Cusers=E2=80=9D decide the rule=
s is not the question. The<br>
&gt;&gt;&gt;&gt;&gt; question is only how to avoid a split. If one does not=
 care he can<br>
&gt;&gt;&gt;&gt;&gt; split at any time, no discussion required.<br>
&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt; e<br>
&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt; On Jun 27, 2021, at 01:47, Jorge Tim=C3=B3n &lt;jt=
imon@jtimon.cc&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt; =EF=BB=BFIf different users want different incompa=
tible things (enough on<br>
&gt;&gt;&gt;&gt;&gt;&gt; each side), there&#39;s no way to avoid the split.=
 We shouldn&#39;t try to<br>
&gt;&gt;&gt;&gt;&gt;&gt; avoid such a split.<br>
&gt;&gt;&gt;&gt;&gt;&gt; Users decide the rules, not miners nor developers.=
<br>
&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; On Sun, Jun 27, 2021 at 12:05 AM Eric Voskuil =
via bitcoin-dev<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxf=
oundation.org" target=3D"_blank" rel=3D"noreferrer">bitcoin-dev@lists.linux=
foundation.org</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; Ultimately there is only one answer to this qu=
estion. Get majority<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; hash power support.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; Soft fork enforcement is the same act as any o=
ther censorship<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; enforcement, the difference is only a question=
 of what people want.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; Given that there is no collective =E2=80=9Cwe=
=E2=80=9D, those wants differ. Bitcoin<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; resolves this question of conflicting wants, b=
ut it is not a<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; democracy, it=E2=80=99s a market. One votes by=
 trading.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; If one wants to enforce a soft fork (or otherw=
ise censor) this is<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; accomplished by mining (or paying others to do=
 so). Anyone can mine,<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; so everyone gets a say. Mining is trading capi=
tal now for more<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; later. If enough people want to do that, they =
can enforce a soft<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; fork. It=E2=80=99s time Bitcoiners stop thinki=
ng of miners as other people.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; Anyone can mine, and that=E2=80=99s your vote.=
<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; Otherwise, as mentioned below, anyone can star=
t a new coin. But it=E2=80=99s<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; dishonest to imply that one can do this and al=
l others will surely<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; follow. This cannot be known, it=E2=80=99s mer=
ely a gamble. And it=E2=80=99s one<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; that has been shown to not always pay off.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; e<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; On Jun 26, 2021, at 14:43, Eric Voskui=
l &lt;<a href=3D"mailto:eric@voskuil.org" target=3D"_blank" rel=3D"noreferr=
er">eric@voskuil.org</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; =EF=BB=BFFor some definitions of =E2=80=9C=
block=E2=80=9D.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Without majority hash power support, activ=
ation simply means you<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; are off on a chain split. Anyone can of co=
urse split off from a<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; chain by changing a rule (soft or otherwis=
e) at any time, so this<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; is a bit of an empty claim.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Nobody can stop a person from splitting. T=
he relevant question is<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; how to *prevent* a split. And activation w=
ithout majority hash<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; power certainly does not =E2=80=9Censure=
=E2=80=9D this.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; e<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; On Jun 26, 2021, at 14:13, Luke Dashjr=
 via bitcoin-dev<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; &lt;<a href=3D"mailto:bitcoin-dev@list=
s.linuxfoundation.org" target=3D"_blank" rel=3D"noreferrer">bitcoin-dev@lis=
ts.linuxfoundation.org</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; =EF=BB=BFBIP8 LOT=3DTrue just ensures =
miners cannot block an upgrade<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; entirely. They can still slow it down.=
<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; It also already has the trinary state =
you seem to be describing<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; (although perhaps this could be better=
 documented in the BIP):<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; users who oppose the softfork can and =
should treat the successful<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; signal (whether MASF or UASF) as inval=
id, thereby ensuring they do<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; not follow a chain with the rules in f=
orce.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; No additional bit is needed, as softfo=
rks are coordinated between<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; users, NOT miners (who have no particu=
lar say in them, aside from<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; their role as also being users). The m=
iner involvement is only out<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; of necessity (to set the bit in the he=
ader, which users coordinate<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; with) and potentially to accelerate ac=
tivation by protecting<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; upgrade-lagging users.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Luke<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; On Saturday 26 June 2021 20:21=
:52 Billy Tetrud via bitcoin-dev<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Given the recent controversy over =
upgrade mechanisms for the<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; non-controversial taproot upgrade,=
 I have been thinking about<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; ways to solve the problems that bo=
th sides brought up. In short,<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; BIP8 LOT=3Dtrue proponents make th=
e point that lazy miners failing<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; to upgrade in a timely manner slow=
 down releases of bitcoin<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; upgrades, and BIP9 / BIP8 LOT=3Dfa=
lse proponents make the point<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; that LOT=3Dtrue can lead to undesi=
rable forks that might cause a<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; lot of chaos. I believe both point=
s are essentially correct and<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; have created a proposal<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; &lt;<a href=3D"https://github.com/=
fresheneesz/bip-trinary-version-signaling/blo" rel=3D"noreferrer noreferrer=
" target=3D"_blank">https://github.com/fresheneesz/bip-trinary-version-sign=
aling/blo</a><br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; b/master/b ip-trinary-version-bits=
.md&gt; for soft fork upgrades that<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; solve both problems.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; The proposal uses trinary version =
signaling rather than binary<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; signaling. For any particular pros=
pective soft fork upgrade, this<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; allows for three signaling states:=
<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; * Actively support the change.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; * Actively oppose the change.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; * Not signaling (neither support o=
r oppose). This is the default<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; state.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Using this additional information,=
 we can release non-contentious<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; upgrades much quicker (with a much=
 lower percent of miners<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; signaling support). For contentiou=
s upgrades, miners who oppose<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; the change are incentivized to upd=
ate their software to a version<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; that can actively signal oppositio=
n to the change. The more<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; opposition there is, the higher th=
e threshold necessary to lock<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; in the upgrade. With the parameter=
s I currently recommended in<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; the proposal, this chart shows how=
 much support signaling would<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; be necessary given a particular am=
ount of active opposition<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; signaling:<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; [image: thresholdChart.png]<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; If literally no one signals opposi=
tion, a 60% threshold should be<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; relatively safe because it is a su=
permajority amount that is<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; unlikely to change significantly v=
ery quickly (ie if 60% of<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; miners support the change today, i=
ts unlikely that less than a<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; majority of miners would support t=
he change a year or two from<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; now), and if no one is signaling o=
pposition, chances are that the<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; vast majority of the other 40% wou=
ld also eventually signal<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; support.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; This both gives an incentive for &=
quot;lazy&quot; miners to upgrade if they<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; actually oppose the change while a=
t the same time allowing these<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; lazy miners to remain lazy without=
 slowing down the soft fork<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; activation much.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; I think now is the right time to d=
iscuss new soft fork upgrade<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; mechanisms, when there are no pres=
sing soft fork upgrades ready<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; to deploy. Waiting until we need t=
o deploy a soft fork to discuss<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; this will only delay things and ca=
use contention again like it<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; did with taproot.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; I&#39;m very curious to know what =
people think of this mechanism. I<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; would appreciate any comments here=
, or written as github issues<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; on the proposal repo itself.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Thanks,<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; BT<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; ______________________________________=
_________<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; bitcoin-dev mailing list<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <a href=3D"mailto:bitcoin-dev@lists.li=
nuxfoundation.org" target=3D"_blank" rel=3D"noreferrer">bitcoin-dev@lists.l=
inuxfoundation.org</a><br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; <a href=3D"https://lists.linuxfoundati=
on.org/mailman/listinfo/bitcoin-dev" rel=3D"noreferrer noreferrer" target=
=3D"_blank">https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev<=
/a><br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; <br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; ______________________________________________=
_<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; bitcoin-dev mailing list<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; <a href=3D"mailto:bitcoin-dev@lists.linuxfound=
ation.org" target=3D"_blank" rel=3D"noreferrer">bitcoin-dev@lists.linuxfoun=
dation.org</a><br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; <a href=3D"https://lists.linuxfoundation.org/m=
ailman/listinfo/bitcoin-dev" rel=3D"noreferrer noreferrer" target=3D"_blank=
">https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a><br>
&gt; <br>
</blockquote></div>

--00000000000042709205c5ec9c42--