summaryrefslogtreecommitdiff
path: root/6f/523cf4badcb1e2624e7a2e57d073d7c5a6a091
blob: 07bbfaab6ca240eaa7edf5d06ed0debaa5a8f2c0 (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
Delivery-date: Fri, 19 Apr 2024 16:26:17 -0700
Received: from mail-oo1-f62.google.com ([209.85.161.62])
	by mail.fairlystable.org with esmtps  (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
	(Exim 4.94.2)
	(envelope-from <bitcoindev+bncBC22FLMMY4FRBD73ROYQMGQEFZ6ESGQ@googlegroups.com>)
	id 1rxxcV-0005FR-LU
	for bitcoindev@gnusha.org; Fri, 19 Apr 2024 16:26:16 -0700
Received: by mail-oo1-f62.google.com with SMTP id 006d021491bc7-5ac4470de2esf2363011eaf.1
        for <bitcoindev@gnusha.org>; Fri, 19 Apr 2024 16:26:14 -0700 (PDT)
ARC-Seal: i=2; a=rsa-sha256; t=1713569169; cv=pass;
        d=google.com; s=arc-20160816;
        b=Qc+r6dqVjjcyogede+09S4GSJ1s4Z8aIWZxiDO+xWZQakvGaw0kwdteDSgtr1NJ2zV
         vFUghPJpw1r8HabO32uSXN025YlECqXMaY1QTsJADBY4JL/SmaMpxNewvyqd/a5rRq7w
         0DL1LoZ5oAi4JRz4hLpDdXkqzrcQO20W89nwOBsmNDt/MiqM8O9E6BBoxc6/2NjIqNnF
         u8/mqSFQN0i49Gp1OEYOlk107gsy08djbnjRPbtf11tTAwWPMAOCbQe+ui70ixQzgqZR
         uMvAJR5dpJjx9r7NVbkDqaclr6MImWf7xoW43K8oV7a3zLZVResV9TVzlG3U9K5SB2q+
         xNIA==
ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816;
        h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
         :list-id:mailing-list:precedence:cc:to:subject:message-id:date:from
         :in-reply-to:references:mime-version:sender:dkim-signature
         :dkim-signature;
        bh=wZka18nvRtUNli6cCcEB7mkuhNeX/NRlawgvafCg2rU=;
        fh=D6Klpce1eF5vTDukwXaxMo9E7KYqs9QZDbasK9IdhQQ=;
        b=y5UbZYhlVIIsIEnMNW57TBWMLkNOwIQOD5FHYg2zSxz6JnKHfwyQzuiekpeYS8NQRv
         yFlSIs8tJvVua0l58H4xZhRUxQiOXOt6QdKb9IlZnVvHFFQT5xencNrPKirFNP+uYaSN
         cNwsDgajKzq/LnYxR6S1NDDGl19Ia0VoaUMv7mkXTe/J2u98+/cV+jG1I+BC3yztuKXR
         PT/wrx4GAg/v+cCPv3yu3eI8HzRRi/mFoWTOmVoBlSMvszEl+LGHFuMMeHLGuEDT+ssp
         z7mH1STiZsxvNoedXLSgT9bJkmcC46CGyAGBPFozTDrXziSciooBSThbZDz8rRxJCM1C
         +vMg==;
        darn=gnusha.org
ARC-Authentication-Results: i=2; gmr-mx.google.com;
       dkim=pass header.i=@gmail.com header.s=20230601 header.b=jRMLaGC5;
       spf=pass (google.com: domain of laolu32@gmail.com designates 2607:f8b0:4864:20::b2c as permitted sender) smtp.mailfrom=laolu32@gmail.com;
       dmarc=pass (p=NONE sp=QUARANTINE dis=NONE) header.from=gmail.com
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=googlegroups.com; s=20230601; t=1713569169; x=1714173969; darn=gnusha.org;
        h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
         :list-id:mailing-list:precedence:x-original-authentication-results
         :x-original-sender:cc:to:subject:message-id:date:from:in-reply-to
         :references:mime-version:sender:from:to:cc:subject:date:message-id
         :reply-to;
        bh=wZka18nvRtUNli6cCcEB7mkuhNeX/NRlawgvafCg2rU=;
        b=hiFiheCXBZkop1cXafw2vpw3g9s3VfQu2RqPMf0n5Hf0GtpMqGiHI1Vp233wFhh7yA
         zkNm53bw1wlJX5cieFgr5QaMXOcpo3BpOglcMNsEHBuBfs45QefxMHI43EgA1qKzGys6
         7Y/hsogoAyg0WylS6Bm3/sofvY7b32Fxu1FAveimqkBsOqXLS3ldPnjLpm7OZ6heuNyg
         5+YEDIYmfDLBupe7OdjYutve88KpmE8voj9dDv/WQ3H+olZjMGOaIPjEVw92f8qF6qP/
         53C14iDZqEaQ3UiUte5xhXj3bxlE9J4ig7oTICsQpJwAAZ0wczNVaoWCDy92RC9y4KnZ
         yOtw==
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=gmail.com; s=20230601; t=1713569169; x=1714173969; darn=gnusha.org;
        h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
         :list-id:mailing-list:precedence:x-original-authentication-results
         :x-original-sender:cc:to:subject:message-id:date:from:in-reply-to
         :references:mime-version:from:to:cc:subject:date:message-id:reply-to;
        bh=wZka18nvRtUNli6cCcEB7mkuhNeX/NRlawgvafCg2rU=;
        b=LoQPL2lHIpH3v7Y0LK+XAaPAuYkn3kq90DZACffty5j2sTcPEKBYi2k7cmlrU1HO7u
         a5sKCSFHMehtM9I+gF7Zjd1ZKwcGao7CFw71eoI06mxsXs+h4KVZz+Ftb37aDMHL+gBx
         I40GeY8C7JBc2XjwlZ+qmqQCfPBL9l4rbL1TU1o+A80Y/RVkyWImvw9DUqHK4GcjtAEx
         sAVz2gy/kNUrolAog05QqU5UT/s6tcYtUP6Nt53OH3O/Fx9WtgpN/yh1og9azuBed0Ly
         haMyUWJlQA7WXidXQO4pnGvu9o3Nk9rfIJ0TBgirs++VgxbHzpvXIgBoQstMrUzGJ08n
         gKkg==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=1e100.net; s=20230601; t=1713569169; x=1714173969;
        h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
         :list-id:mailing-list:precedence:x-original-authentication-results
         :x-original-sender:cc:to:subject:message-id:date:from:in-reply-to
         :references:mime-version:x-beenthere:x-gm-message-state:sender:from
         :to:cc:subject:date:message-id:reply-to;
        bh=wZka18nvRtUNli6cCcEB7mkuhNeX/NRlawgvafCg2rU=;
        b=mNfEqARPf1N8AJ0Gj25XRmxCbjHy8E9rXvXZwC/GyzrRvfDxNJ1Sz17fsq22kojVyu
         q2fNyruC4OylA63AEH3RUg5kYJs9CpNlAadGIp9rnsT2ELzhB7/wQXnNgytfuyJj3gJr
         mC9PEsJRDEfZ2SzIS/5U69/KxG7QdNrfdMYc4gLi5Yw7Z7mw4oRLniufoYZocEfY14MM
         /MLrqzC7t4x4JajTdjnpN3P9X48QeFfo5/aC3E1Je5ils0FLy1mzc+iJkDlz5xPRfGTd
         51B7Df6yZx/nf5KvbQnO1hO+Az09fLsrUrwrTsPjhozGAjvCmlcMa0wbbSUKj9QD3lfN
         W4Ng==
Sender: bitcoindev@googlegroups.com
X-Forwarded-Encrypted: i=2; AJvYcCVW1uw09rxQiGzIxg3ORjij8y7V7mKN4+aPvcgG7QOIxGBQY0QGaDJRxq5Pk0B2m7qHZHZHUQq7qMKDxY3do2O7EVzP8m8=
X-Gm-Message-State: AOJu0YwhuOLtakpfwpaOvuyLGNO25L4CVjUUm/xbXSNFj97rsOCPj/jS
	ExIbQ89PjvTF0KPz/KtTgb2KUpND8C9bFlcTkqFYlW3hSkGmOYDx
X-Google-Smtp-Source: AGHT+IHvLwC8ZglQqaZ3sSCgKrmZM5isDmwcBUwvOmGcOCV4EA9Gevd0ivuDEH5pshM12yxASC364Q==
X-Received: by 2002:a05:6871:280c:b0:22e:ed14:3e3d with SMTP id bp12-20020a056871280c00b0022eed143e3dmr3069929oac.33.1713569168670;
        Fri, 19 Apr 2024 16:26:08 -0700 (PDT)
X-BeenThere: bitcoindev@googlegroups.com
Received: by 2002:a05:6871:528a:b0:233:55b9:5512 with SMTP id
 586e51a60fabf-23933071c1els1472520fac.0.-pod-prod-08-us; Fri, 19 Apr 2024
 16:26:07 -0700 (PDT)
X-Received: by 2002:a05:6870:46ab:b0:22e:e675:67a9 with SMTP id a43-20020a05687046ab00b0022ee67567a9mr31986oap.3.1713569167560;
        Fri, 19 Apr 2024 16:26:07 -0700 (PDT)
Received: by 2002:a05:6808:2013:b0:3c7:5069:26b6 with SMTP id 5614622812f47-3c7506927d8msb6e;
        Fri, 19 Apr 2024 15:32:22 -0700 (PDT)
X-Received: by 2002:a05:6a21:191:b0:1a9:852f:6acf with SMTP id le17-20020a056a21019100b001a9852f6acfmr4686689pzb.11.1713565940607;
        Fri, 19 Apr 2024 15:32:20 -0700 (PDT)
ARC-Seal: i=1; a=rsa-sha256; t=1713565940; cv=none;
        d=google.com; s=arc-20160816;
        b=KClY55pYlYcgKrpumzKnc/4iP/vQ1BcM29xQW21iceY6Ldn+D7bpsK0Bx+ZR47gj0C
         CLepkB7xlJAPCo4ugvGnYdrSBaPCfunDVTGTvcdWTmdt2LGtef/jpFHdhasRuNHfIXQE
         xc1b3iUraVPo9+fuHeNcUeuiu9Flh9MtB3x3AzTt2OeLW5uaTC1x1p2DLjPefRhAQIgY
         8t5pMa+z2dX+hS3xzm0eSkH1nPirY93XRTZix0egQl5CGyPK7ID3Vbb8imAp9s4kMkfE
         4h3owLWRspFvB0k6hWs5IdQyA7OExIJev5fL/u8m+nZJXFshroJbGVFYVQR4z5yViCab
         +qUQ==
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816;
        h=cc:to:subject:message-id:date:from:in-reply-to:references
         :mime-version:dkim-signature;
        bh=MRLgii/kuga6FR0250nE5W7FT8IPguabKVT5OLG6HSU=;
        fh=FaZol9Uk6gnK+uGtcSFJW2nlQY6QrNwlPUIRM6Aafbo=;
        b=LB+YqdPtRIUVWjcNrnt8kxK9ooI03iDXzfdff2Z3i8aSZndsjL1XaC0A4zuRZ0AHSS
         kWOxogRciVlO2He8piJ+indxEZ6R1EEV5cSnA7nOgZrii1822La3BK7ND2GPRpaTXaX+
         k/n7f6Vmxq/jUpcAbH5Oq3/PgINdM4DZLOvwrKO3PpiDuWSwy+FEcBYOrqTc7aDq6AbW
         r/HYr5O07hJkFnwsGZxZuE+rdIH7kqgWqONg6DW6/KqX6eav054FKlkv0B9CazCQfvcW
         jdVrFox1NPlddqslN4rB/7sLy4Rl2OQkRdi/LxyHH1g4F+MZg3w5zFo+6+VPT1PeFBZJ
         HeBQ==;
        dara=google.com
ARC-Authentication-Results: i=1; gmr-mx.google.com;
       dkim=pass header.i=@gmail.com header.s=20230601 header.b=jRMLaGC5;
       spf=pass (google.com: domain of laolu32@gmail.com designates 2607:f8b0:4864:20::b2c as permitted sender) smtp.mailfrom=laolu32@gmail.com;
       dmarc=pass (p=NONE sp=QUARANTINE dis=NONE) header.from=gmail.com
Received: from mail-yb1-xb2c.google.com (mail-yb1-xb2c.google.com. [2607:f8b0:4864:20::b2c])
        by gmr-mx.google.com with ESMTPS id b14-20020a056a000cce00b006ed2f54b0b5si402580pfv.4.2024.04.19.15.32.20
        for <bitcoindev@googlegroups.com>
        (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128);
        Fri, 19 Apr 2024 15:32:20 -0700 (PDT)
Received-SPF: pass (google.com: domain of laolu32@gmail.com designates 2607:f8b0:4864:20::b2c as permitted sender) client-ip=2607:f8b0:4864:20::b2c;
Received: by mail-yb1-xb2c.google.com with SMTP id 3f1490d57ef6-de463ffef13so2700861276.2
        for <bitcoindev@googlegroups.com>; Fri, 19 Apr 2024 15:32:20 -0700 (PDT)
X-Received: by 2002:a05:6902:218f:b0:de4:755b:1ce1 with SMTP id
 dl15-20020a056902218f00b00de4755b1ce1mr4234420ybb.20.1713565939408; Fri, 19
 Apr 2024 15:32:19 -0700 (PDT)
MIME-Version: 1.0
References: <2092f7ff-4860-47f8-ba1a-c9d97927551e@achow101.com>
 <52a0d792-d99f-4360-ba34-0b12de183fef@murch.one> <84309c3f-e848-d333-fd28-bdd55899b713@netpurgatory.com>
 <9baa15e4-062d-478f-8c87-8ff19ab79989@murch.one> <4c1462b7-ea1c-4a36-be81-7c3719157fabn@googlegroups.com>
 <6806b22d-043d-4201-841a-95e17cd8d542@mattcorallo.com> <77554baa9330c57361c65c1fc85557f1@dtrt.org>
 <7b4e2223-0b96-4ca0-a441-aebcfc7b0bben@googlegroups.com> <CAEYHFxV_8_Jw61tysL_cV_xiXBcRyA3e=CGHGuSCgm+-4WxT9w@mail.gmail.com>
 <fb52ccb5-9942-4db8-b880-3c06ebc47cd1@achow101.com>
In-Reply-To: <fb52ccb5-9942-4db8-b880-3c06ebc47cd1@achow101.com>
From: Olaoluwa Osuntokun <laolu32@gmail.com>
Date: Fri, 19 Apr 2024 15:32:07 -0700
Message-ID: <CAO3Pvs8B+NVWFUxg6zfNXYrAfX9mhqpj9ZpNSEr4HWUbJKnNmw@mail.gmail.com>
Subject: Re: [bitcoindev] Re: Adding New BIP Editors
To: Ava Chow <lists@achow101.com>
Cc: bitcoindev@googlegroups.com
Content-Type: multipart/alternative; boundary="0000000000001e26e306167aa9ca"
X-Original-Sender: laolu32@gmail.com
X-Original-Authentication-Results: gmr-mx.google.com;       dkim=pass
 header.i=@gmail.com header.s=20230601 header.b=jRMLaGC5;       spf=pass
 (google.com: domain of laolu32@gmail.com designates 2607:f8b0:4864:20::b2c as
 permitted sender) smtp.mailfrom=laolu32@gmail.com;       dmarc=pass (p=NONE
 sp=QUARANTINE dis=NONE) header.from=gmail.com
Precedence: list
Mailing-list: list bitcoindev@googlegroups.com; contact bitcoindev+owners@googlegroups.com
List-ID: <bitcoindev.googlegroups.com>
X-Google-Group-Id: 786775582512
List-Post: <https://groups.google.com/group/bitcoindev/post>, <mailto:bitcoindev@googlegroups.com>
List-Help: <https://groups.google.com/support/>, <mailto:bitcoindev+help@googlegroups.com>
List-Archive: <https://groups.google.com/group/bitcoindev
List-Subscribe: <https://groups.google.com/group/bitcoindev/subscribe>, <mailto:bitcoindev+subscribe@googlegroups.com>
List-Unsubscribe: <mailto:googlegroups-manage+786775582512+unsubscribe@googlegroups.com>,
 <https://groups.google.com/group/bitcoindev/subscribe>
X-Spam-Score: -0.5 (/)

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

Hi y'all,

> I have reached out to all 3 of them privately, and received responses fro=
m
> Kanzure and Ruben that indicate that they probably are willing, but publi=
c
> confirmation from them on this list would also be nice. I have not
> received a response from Roasbeef.

I followed up on this with achow directly and realized that she reached out
to me via a DM on IRC. I haven't lurked on IRC for many many months now (bu=
t
this prompted me to lurk once again!), so I missed the original message.

After DM'ing on X back and forth a bit to get some clarity on the proposed
role, I'd be comfortable with being added as one of the (3?) new BIP
editors. I think it's unfortunate that the BIP process has decayed over the
past year or so (particularly with all the new dev activity), so if I can
lend my time to help restore the process, then I'd be happy to do so =F0=9F=
=AB=A1.

In terms of load, if I were to be added, given that we'd now have 4 (?)
total BIP editors, I don't envision the load would be concentrated on any
one individual.

-- Laolu


On Tue, Apr 16, 2024 at 10:24=E2=80=AFAM 'Ava Chow' via Bitcoin Development=
 Mailing
List <bitcoindev@googlegroups.com> wrote:

> While I don't disagree that 5 or 6 people seems like a lot to add at
> once, it's not clear to me how we should decide which subset of the
> nominees should be added. As it is now, I have only seen an actual
> objection to Kanzure and Ruben from /dev/fd0, and no explicit objections
> to anyone else. It seems like the vast majority of people don't share
> their concerns either as both Kanzure and Ruben continue to be endorsed
> by many others.
>
> Looking at the endorsements each candidate has received, the current
> counts are:
> * Kanzure - 17 for, 1 against
> * Murch - 13 for
> * Jonatack - 13 for
> * Ruben - 12 for, 1 against
> * Roasbeef - 9 for
> * Michael Folkson - none
>
> However, I don't want this process to become a popularity contest and
> require some kind of formal voting. Rather I'd prefer that this process
> be something more like how Bitcoin Core maintainers are added - by
> achieving rough consensus. Without any explicit objections to any of
> these candidates, I'm inclined to move forward with adding the 5 who
> have received endorsements. Having to pick "winners" from this list
> seems like a quick way to stir up drama that I don't think anyone really
> wants to deal with.
>
> I do want to note that neither Kanzure, Ruben, nor Roasbeef have posted
> on this list that they are willing to be BIP editors. I have reached out
> to all 3 of them privately, and received responses from Kanzure and
> Ruben that indicate that they probably are willing, but public
> confirmation from them on this list would also be nice. I have not
> received a response from Roasbeef.
>
> Ava
>
> On 04/11/2024 10:22 AM, Sergi Delgado Segura wrote:
> >  > I would prefer having more (9+?) than less folks on this task, so
> > personal preferences are easily ignored and overwritten by the group
> > majority.
> >
> > I disagree with that, the more doesn't really the better here. Having
> > too many editors may result in a tragedy of the commons, in which peopl=
e
> > just commit to the job because many others do, and they do not end up
> > doing as much because they expect others to do the it. This does not
> > only make the process look bad but may burnout the ones that end up
> > doing the job, given their time commitment ends up being too far from
> > their expectations.
> >
> > I think being more moderate with the amount of people is better, and
> > gives us leeway in case the workload ends up being excessive and we nee=
d
> > to add more people (plus discourage people from joining and slacking
> off).
> >
> > I think 3 more people should be a good number to start from.
> > I'd personally vouch for Murch, Kanzure, and Ruben based on their track
> > record in the space
> >
> > On Tue, Apr 2, 2024 at 4:30=E2=80=AFPM nvk <rdlfnvk@gmail.com
> > <mailto:rdlfnvk@gmail.com>> wrote:
> >
> > +1 for
> > Kanzure
> > RubenSomsen
> > Seccour
> > Jon Atack
> > Roasbeef
> >
> > I would prefer having more (9+?) than less folks on this task, so
> > personal preferences are easily ignored and overwritten by the group
> > majority.
> >
> > BIPs were intended as a means to collect ideas, not enforce ideas.
> >
> > I'd like to return to that.
> >
> > - NVK (temp gmail account)
> >
> >     On Monday, April 1, 2024 at 5:16:54=E2=80=AFPM UTC-4 David A. Hardi=
ng wrote:
> >
> >         On 2024-03-28 10:04, Matt Corallo wrote:
> >          > Please provide justification rather than simply saying "I
> >         like Bob!".
> >
> >         Using only comments from the mailing list, the following appear=
s
> >         to be
> >         the candidate list along with the current support. Asterisks
> denote
> >         candidates who indicated their willingness to accept the role.
> >
> >         - Bryan "Kanzure" Bishop, recommended by Ava Chow[1], Chris
> >         Stewart[3],
> >         Michael Folkson[6], Peter Todd[9], Matt Corallo[10], Brandon
> >         Black[11],
> >         Antoine Riard[12], Murch[13], Antoine Poinsot[15], John
> >         Carvalho[16]
> >
> >         - Ruben Somsen, recommended by Ava Chow[1], Chris Stewart[3],
> >         Michael
> >         Folkson[6], Antoine Riard[12], Murch[13], Antoine Poinsot[15],
> John
> >         Carvalho[16]
> >
> >         - Jon Atack*, recommended by Luke Dashjr[2], Chris Stewart[3],
> >         /dev/fd0[5][7],
> >         Brandon Black[11], Antoine Riard[12], Ava Chow[14], John
> >         Carvalho[16]
> >
> >         - Olaoluwa "Roasbeef" Osuntokun, recommended by Chris
> >         Stewart[3], John
> >         C. Vernaleo[4], /dev/fd0[5][7], Keagan McClelland[8], Antoine
> >         Riard[12], Ava Chow[14]
> >
> >         - Mark "Murch" Erhardt*, recommended by Michael Folkson[6],
> Keagan
> >         McClelland[8], Matt Corallo[10], Brandon Black[11], Antoine
> >         Riard[12],
> >         Ava Chow[14]
> >
> >         - Michael Folkson*
> >
> >         Note: Luke Dashjr proposed[17] Seccour and Greg Tonoski for
> >         "non-dev
> >         triaging", Tonoski proposed himself[18] for "BIP editor", and
> >         Antoine
> >         Riard[12] proposed Seccour for "decentralized PM".
> >
> >         I searched the BIPs repo by commenter to see if any of the abov=
e
> >         candidates had been especially active there, which is listed
> >         below as:
> >         total PRs they commented on (number still open/number closed).
> >
> >         - 21 (1/20) commenter:kanzure
> >         - 3 (2/1) commenter:rubensomsen
> >         - 15 (0/15) commenter:jonatack
> >         - 18 (2/16) commenter:roasbeef
> >         - 10 (6/4) commenter:Murchandamus
> >         - 57 (6/51) commenter:michaelfolkson
> >
> >         I'll also note that Osuntokun is the only member of the set to
> >         have a
> >         merged BIP that they co-authored, although I believe there are
> >         far-along
> >         draft BIPs for both Murch (terminology) and Somsen (Silent
> >         Payments). I
> >         don't think this should be a requirement, but I do think it
> >         demonstrates
> >         familiarity with the process.
> >
> >         Speaking only for myself, I think all of the candidates above
> with
> >         multiple recommendations from other community participants are
> >         fully
> >         qualified for the role, so I'll only provide a detailed
> >         justification
> >         for the person who would be my first pick: Murch is not only a
> >         longstanding and broadly liked Bitcoin contributor, but (as
> Corallo
> >         mentioned) he has worked on standardizing terminology through a
> >         draft
> >         BIP. In addition, he provided an extremely detailed review of
> >         all 300
> >         pages of a draft of Mastering Bitcoin (3rd edition) and has
> >         reviewed
> >         drafts of over 200 weekly Optech newsletters, in both cases
> >         significantly improving the accuracy and comprehensibility of t=
he
> >         documentation. To me, that seems very similar to the work we'd
> >         ask him
> >         to perform as a BIPs editor and it's something that he's alread=
y
> >         doing,
> >         so I think there's an excellent fit of person to role.
> >
> >         -Dave
> >
> >         [1]
> >
> https://gnusha.org/pi/bitcoindev/2092f7ff-4860-47f8...@achow101.com/ <
> https://gnusha.org/pi/bitcoindev/2092f7ff-4860-47f8-ba1a-c9d97927551e@ach=
ow101.com/
> >
> >         [2]
> >
> https://gnusha.org/pi/bitcoindev/9288df7b-f2e9-4106...@dashjr.org/ <
> https://gnusha.org/pi/bitcoindev/9288df7b-f2e9-4106-b843-c1ff8f8a62a3@das=
hjr.org/
> >
> >         [3]
> >
> https://gnusha.org/pi/bitcoindev/d1e7183c-30e6-4f1a...@googlegroups.com/ =
<
> https://gnusha.org/pi/bitcoindev/d1e7183c-30e6-4f1a-8fd6-cddc46f129a2n@go=
oglegroups.com/
> >
> >         [4]
> >
> https://gnusha.org/pi/bitcoindev/84309c3f-e848-d333...@netpurgatory.com/ =
<
> https://gnusha.org/pi/bitcoindev/84309c3f-e848-d333-fd28-bdd55899b713@net=
purgatory.com/
> >
> >         [5]
> >
> https://gnusha.org/pi/bitcoindev/4c1462b7-ea1c-4a36...@googlegroups.com/ =
<
> https://gnusha.org/pi/bitcoindev/4c1462b7-ea1c-4a36-be81-7c3719157fabn@go=
oglegroups.com/
> >
> >         [6]
> >
> https://gnusha.org/pi/bitcoindev/a116fba3-5948-48d2...@googlegroups.com/ =
<
> https://gnusha.org/pi/bitcoindev/a116fba3-5948-48d2-a787-639a3564d006n@go=
oglegroups.com/
> >
> >         [7]
> >
> https://gnusha.org/pi/bitcoindev/846b668f-8386-4869...@googlegroups.com/ =
<
> https://gnusha.org/pi/bitcoindev/846b668f-8386-4869-a3b1-55d346efbea1n@go=
oglegroups.com/
> >
> >         [8]
> >
> https://gnusha.org/pi/bitcoindev/CALeFGL1-LKPWd7YRS110ut8tX=3DwruqgLEazRA=
5...@mail.gmail.com/
> <
> https://gnusha.org/pi/bitcoindev/CALeFGL1-LKPWd7YRS110ut8tX=3DwruqgLEazRA=
5nVw9siYCPj4A@mail.gmail.com/
> >
> >         [9] https://gnusha.org/pi/bitcoindev/ZgePPvbf...@petertodd.org/
> >         <
> https://gnusha.org/pi/bitcoindev/ZgePPvbfrr4wZG7k@petertodd.org/>
> >         [10]
> >
> https://gnusha.org/pi/bitcoindev/f9435999-42df-46b5...@mattcorallo.com/ <
> https://gnusha.org/pi/bitcoindev/f9435999-42df-46b5-86e2-7ba0336a9bf2@mat=
tcorallo.com/
> >
> >         [11] https://gnusha.org/pi/bitcoindev/ZgWRu32FXzqqg69V@console/
> >         <https://gnusha.org/pi/bitcoindev/ZgWRu32FXzqqg69V@console/>
> >         [12]
> >
> https://gnusha.org/pi/bitcoindev/CALZpt+E8DohYEJ9aO+FiF6+E...@mail.gmail.=
com/
> <
> https://gnusha.org/pi/bitcoindev/CALZpt+E8DohYEJ9aO+FiF6+EKMCP5oEbHSKSXpq=
0VKVBhJLhrw@mail.gmail.com/
> >
> >         [13]
> >
> https://gnusha.org/pi/bitcoindev/53a0015c-b76a-441a...@murch.one/ <
> https://gnusha.org/pi/bitcoindev/53a0015c-b76a-441a-920b-32bd88d5e778@mur=
ch.one/
> >
> >         [14]
> >
> https://gnusha.org/pi/bitcoindev/ae482890-bce3-468f...@achow101.com/ <
> https://gnusha.org/pi/bitcoindev/ae482890-bce3-468f-866d-c555b80b0644@ach=
ow101.com/
> >
> >         [15]
> >
> https://gnusha.org/pi/bitcoindev/ppBS1tfMU3SFX85kmIBVBd0WpT5Wof_oSBXsuizh=
7692AUDw2TojfvCqvcvlmsy9E69qfWMxK-UZWawf8IDApPqF7bXOH4gwU1c2jS4xojo=3D@prot=
onmail.com/
> <
> https://gnusha.org/pi/bitcoindev/ppBS1tfMU3SFX85kmIBVBd0WpT5Wof_oSBXsuizh=
7692AUDw2TojfvCqvcvlmsy9E69qfWMxK-UZWawf8IDApPqF7bXOH4gwU1c2jS4xojo=3D@prot=
onmail.com/
> >
> >         [16]
> >
> https://gnusha.org/pi/bitcoindev/ad284018-e99c-4552...@googlegroups.com/ =
<
> https://gnusha.org/pi/bitcoindev/ad284018-e99c-4552-88ca-11b9ed340661n@go=
oglegroups.com/
> >
> >         [17]
> >
> https://gnusha.org/pi/bitcoindev/CAMHHROw9mZJRnTbUo76PdqwJU=3D=3DYJMvd9Qr=
st+...@mail.gmail.com/
> <
> https://gnusha.org/pi/bitcoindev/CAMHHROw9mZJRnTbUo76PdqwJU=3D=3DYJMvd9Qr=
st+nmyypaedYZgg@mail.gmail.com/
> >
> >
> >     --
> >     You received this message because you are subscribed to the Google
> >     Groups "Bitcoin Development Mailing List" group.
> >     To unsubscribe from this group and stop receiving emails from it,
> >     send an email to bitcoindev+unsubscribe@googlegroups.com
> >     <mailto:bitcoindev+unsubscribe@googlegroups.com>.
> >     To view this discussion on the web visit
> >
> https://groups.google.com/d/msgid/bitcoindev/7b4e2223-0b96-4ca0-a441-aebc=
fc7b0bben%40googlegroups.com
> <
> https://groups.google.com/d/msgid/bitcoindev/7b4e2223-0b96-4ca0-a441-aebc=
fc7b0bben%40googlegroups.com?utm_medium=3Demail&utm_source=3Dfooter
> >.
> >
> >
> >
> > --
> > Sergi.
> >
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Bitcoin Development Mailing List" group.
> > To unsubscribe from this group and stop receiving emails from it, send
> > an email to bitcoindev+unsubscribe@googlegroups.com
> > <mailto:bitcoindev+unsubscribe@googlegroups.com>.
> > To view this discussion on the web visit
> >
> https://groups.google.com/d/msgid/bitcoindev/CAEYHFxV_8_Jw61tysL_cV_xiXBc=
RyA3e%3DCGHGuSCgm%2B-4WxT9w%40mail.gmail.com
> <
> https://groups.google.com/d/msgid/bitcoindev/CAEYHFxV_8_Jw61tysL_cV_xiXBc=
RyA3e%3DCGHGuSCgm%2B-4WxT9w%40mail.gmail.com?utm_medium=3Demail&utm_source=
=3Dfooter
> >.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Bitcoin Development Mailing List" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to bitcoindev+unsubscribe@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/bitcoindev/fb52ccb5-9942-4db8-b880-3c06=
ebc47cd1%40achow101.com
> .
>

--=20
You received this message because you are subscribed to the Google Groups "=
Bitcoin Development Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to bitcoindev+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/=
bitcoindev/CAO3Pvs8B%2BNVWFUxg6zfNXYrAfX9mhqpj9ZpNSEr4HWUbJKnNmw%40mail.gma=
il.com.

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

<div dir=3D"ltr">Hi y&#39;all, <br><br>&gt; I have reached out to all 3 of =
them privately, and received responses from<br>&gt; Kanzure and Ruben that =
indicate that they probably are willing, but public<br>&gt; confirmation fr=
om them on this list would also be nice. I have not<br>&gt; received a resp=
onse from Roasbeef.<br><br>I followed up on this with achow directly and re=
alized that she reached out<br>to me via a DM on IRC. I haven&#39;t lurked =
on IRC for many many months now (but<br>this prompted me to lurk once again=
!), so I missed the original message.<br><br>After DM&#39;ing on X back and=
 forth a bit to get some clarity on the proposed<br>role, I&#39;d be comfor=
table with being added as one of the (3?) new BIP<br>editors. I think it&#3=
9;s unfortunate that the BIP process has decayed over the<br>past year or s=
o (particularly with all the new dev activity), so if I can<br>lend my time=
 to help restore the process, then I&#39;d be happy to do so =F0=9F=AB=A1.<=
br><br>In terms of load, if I were to be added, given that we&#39;d now hav=
e 4 (?)<br>total BIP editors, I don&#39;t envision the load would be concen=
trated on any<br>one individual.<br><br>-- Laolu<br><br></div><br><div clas=
s=3D"gmail_quote"><div dir=3D"ltr" class=3D"gmail_attr">On Tue, Apr 16, 202=
4 at 10:24=E2=80=AFAM &#39;Ava Chow&#39; via Bitcoin Development Mailing Li=
st &lt;<a href=3D"mailto:bitcoindev@googlegroups.com">bitcoindev@googlegrou=
ps.com</a>&gt; wrote:<br></div><blockquote class=3D"gmail_quote" style=3D"m=
argin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left=
:1ex">While I don&#39;t disagree that 5 or 6 people seems like a lot to add=
 at <br>
once, it&#39;s not clear to me how we should decide which subset of the <br=
>
nominees should be added. As it is now, I have only seen an actual <br>
objection to Kanzure and Ruben from /dev/fd0, and no explicit objections <b=
r>
to anyone else. It seems like the vast majority of people don&#39;t share <=
br>
their concerns either as both Kanzure and Ruben continue to be endorsed <br=
>
by many others.<br>
<br>
Looking at the endorsements each candidate has received, the current <br>
counts are:<br>
* Kanzure - 17 for, 1 against<br>
* Murch - 13 for<br>
* Jonatack - 13 for<br>
* Ruben - 12 for, 1 against<br>
* Roasbeef - 9 for<br>
* Michael Folkson - none<br>
<br>
However, I don&#39;t want this process to become a popularity contest and <=
br>
require some kind of formal voting. Rather I&#39;d prefer that this process=
 <br>
be something more like how Bitcoin Core maintainers are added - by <br>
achieving rough consensus. Without any explicit objections to any of <br>
these candidates, I&#39;m inclined to move forward with adding the 5 who <b=
r>
have received endorsements. Having to pick &quot;winners&quot; from this li=
st <br>
seems like a quick way to stir up drama that I don&#39;t think anyone reall=
y <br>
wants to deal with.<br>
<br>
I do want to note that neither Kanzure, Ruben, nor Roasbeef have posted <br=
>
on this list that they are willing to be BIP editors. I have reached out <b=
r>
to all 3 of them privately, and received responses from Kanzure and <br>
Ruben that indicate that they probably are willing, but public <br>
confirmation from them on this list would also be nice. I have not <br>
received a response from Roasbeef.<br>
<br>
Ava<br>
<br>
On 04/11/2024 10:22 AM, Sergi Delgado Segura wrote:<br>
&gt;=C2=A0 &gt; I would prefer having more (9+?) than less folks on this ta=
sk, so <br>
&gt; personal preferences are easily ignored and overwritten by the group <=
br>
&gt; majority.<br>
&gt; <br>
&gt; I disagree with that, the more doesn&#39;t really the better here. Hav=
ing <br>
&gt; too many editors may result in a tragedy of the commons, in which peop=
le <br>
&gt; just commit to the job because many others do, and they do not end up =
<br>
&gt; doing as much because they expect others to do the it. This does not <=
br>
&gt; only make the process look bad but may burnout the ones that end up <b=
r>
&gt; doing the job, given their time commitment ends up being too far from =
<br>
&gt; their expectations.<br>
&gt; <br>
&gt; I think being more moderate with the amount of people is better, and <=
br>
&gt; gives us leeway in case the workload ends up being excessive and we ne=
ed <br>
&gt; to add more people (plus discourage people from joining and slacking o=
ff).<br>
&gt; <br>
&gt; I think 3 more people should be a good number to start from. <br>
&gt; I&#39;d personally vouch for Murch, Kanzure, and Ruben based on their =
track <br>
&gt; record in the space<br>
&gt; <br>
&gt; On Tue, Apr 2, 2024 at 4:30=E2=80=AFPM nvk &lt;<a href=3D"mailto:rdlfn=
vk@gmail.com" target=3D"_blank">rdlfnvk@gmail.com</a> <br>
&gt; &lt;mailto:<a href=3D"mailto:rdlfnvk@gmail.com" target=3D"_blank">rdlf=
nvk@gmail.com</a>&gt;&gt; wrote:<br>
&gt; <br>
&gt; +1 for<br>
&gt; Kanzure<br>
&gt; RubenSomsen<br>
&gt; Seccour<br>
&gt; Jon Atack<br>
&gt; Roasbeef<br>
&gt; <br>
&gt; I would prefer having more (9+?) than less folks on this task, so<br>
&gt; personal preferences are easily ignored and overwritten by the group<b=
r>
&gt; majority.<br>
&gt; <br>
&gt; BIPs were intended as a means to collect ideas, not enforce ideas.<br>
&gt; <br>
&gt; I&#39;d like to return to that.<br>
&gt; <br>
&gt; - NVK (temp gmail account)<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0On Monday, April 1, 2024 at 5:16:54=E2=80=AFPM UTC-=
4 David A. Harding wrote:<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0On 2024-03-28 10:04, Matt Corallo wro=
te:<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 &gt; Please provide justification ra=
ther than simply saying &quot;I<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0like Bob!&quot;.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Using only comments from the mailing =
list, the following appears<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0to be<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0the candidate list along with the cur=
rent support. Asterisks denote<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0candidates who indicated their willin=
gness to accept the role.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0- Bryan &quot;Kanzure&quot; Bishop, r=
ecommended by Ava Chow[1], Chris<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Stewart[3],<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Michael Folkson[6], Peter Todd[9], Ma=
tt Corallo[10], Brandon<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Black[11],<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Antoine Riard[12], Murch[13], Antoine=
 Poinsot[15], John<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Carvalho[16]<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0- Ruben Somsen, recommended by Ava Ch=
ow[1], Chris Stewart[3],<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Michael<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Folkson[6], Antoine Riard[12], Murch[=
13], Antoine Poinsot[15], John<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Carvalho[16]<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0- Jon Atack*, recommended by Luke Das=
hjr[2], Chris Stewart[3],<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0/dev/fd0[5][7],<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Brandon Black[11], Antoine Riard[12],=
 Ava Chow[14], John<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Carvalho[16]<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0- Olaoluwa &quot;Roasbeef&quot; Osunt=
okun, recommended by Chris<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Stewart[3], John<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0C. Vernaleo[4], /dev/fd0[5][7], Keaga=
n McClelland[8], Antoine<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Riard[12], Ava Chow[14]<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0- Mark &quot;Murch&quot; Erhardt*, re=
commended by Michael Folkson[6], Keagan<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0McClelland[8], Matt Corallo[10], Bran=
don Black[11], Antoine<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Riard[12],<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Ava Chow[14]<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0- Michael Folkson*<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Note: Luke Dashjr proposed[17] Seccou=
r and Greg Tonoski for<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&quot;non-dev<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0triaging&quot;, Tonoski proposed hims=
elf[18] for &quot;BIP editor&quot;, and<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Antoine<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Riard[12] proposed Seccour for &quot;=
decentralized PM&quot;.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0I searched the BIPs repo by commenter=
 to see if any of the above<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0candidates had been especially active=
 there, which is listed<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0below as:<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0total PRs they commented on (number s=
till open/number closed).<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0- 21 (1/20) commenter:kanzure<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0- 3 (2/1) commenter:rubensomsen<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0- 15 (0/15) commenter:jonatack<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0- 18 (2/16) commenter:roasbeef<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0- 10 (6/4) commenter:Murchandamus<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0- 57 (6/51) commenter:michaelfolkson<=
br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0I&#39;ll also note that Osuntokun is =
the only member of the set to<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0have a<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0merged BIP that they co-authored, alt=
hough I believe there are<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0far-along<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0draft BIPs for both Murch (terminolog=
y) and Somsen (Silent<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Payments). I<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0don&#39;t think this should be a requ=
irement, but I do think it<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0demonstrates<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0familiarity with the process.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Speaking only for myself, I think all=
 of the candidates above with<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0multiple recommendations from other c=
ommunity participants are<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0fully<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0qualified for the role, so I&#39;ll o=
nly provide a detailed<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0justification<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0for the person who would be my first =
pick: Murch is not only a<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0longstanding and broadly liked Bitcoi=
n contributor, but (as Corallo<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0mentioned) he has worked on standardi=
zing terminology through a<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0draft<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0BIP. In addition, he provided an extr=
emely detailed review of<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0all 300<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0pages of a draft of Mastering Bitcoin=
 (3rd edition) and has<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0reviewed<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0drafts of over 200 weekly Optech news=
letters, in both cases<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0significantly improving the accuracy =
and comprehensibility of the<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0documentation. To me, that seems very=
 similar to the work we&#39;d<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0ask him<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0to perform as a BIPs editor and it&#3=
9;s something that he&#39;s already<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0doing,<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0so I think there&#39;s an excellent f=
it of person to role.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0-Dave<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[1]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/2092f7ff-4860-47f8...@achow101.com/" rel=3D"noreferrer" target=3D"_b=
lank">https://gnusha.org/pi/bitcoindev/2092f7ff-4860-47f8...@achow101.com/<=
/a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/2092f7ff-4860-47f8-ba1a=
-c9d97927551e@achow101.com/" rel=3D"noreferrer" target=3D"_blank">https://g=
nusha.org/pi/bitcoindev/2092f7ff-4860-47f8-ba1a-c9d97927551e@achow101.com/<=
/a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[2]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/9288df7b-f2e9-4106...@dashjr.org/" rel=3D"noreferrer" target=3D"_bla=
nk">https://gnusha.org/pi/bitcoindev/9288df7b-f2e9-4106...@dashjr.org/</a> =
&lt;<a href=3D"https://gnusha.org/pi/bitcoindev/9288df7b-f2e9-4106-b843-c1f=
f8f8a62a3@dashjr.org/" rel=3D"noreferrer" target=3D"_blank">https://gnusha.=
org/pi/bitcoindev/9288df7b-f2e9-4106-b843-c1ff8f8a62a3@dashjr.org/</a>&gt;<=
br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[3]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/d1e7183c-30e6-4f1a...@googlegroups.com/" rel=3D"noreferrer" target=
=3D"_blank">https://gnusha.org/pi/bitcoindev/d1e7183c-30e6-4f1a...@googlegr=
oups.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/d1e7183c-30e6=
-4f1a-8fd6-cddc46f129a2n@googlegroups.com/" rel=3D"noreferrer" target=3D"_b=
lank">https://gnusha.org/pi/bitcoindev/d1e7183c-30e6-4f1a-8fd6-cddc46f129a2=
n@googlegroups.com/</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[4]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/84309c3f-e848-d333...@netpurgatory.com/" rel=3D"noreferrer" target=
=3D"_blank">https://gnusha.org/pi/bitcoindev/84309c3f-e848-d333...@netpurga=
tory.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/84309c3f-e848=
-d333-fd28-bdd55899b713@netpurgatory.com/" rel=3D"noreferrer" target=3D"_bl=
ank">https://gnusha.org/pi/bitcoindev/84309c3f-e848-d333-fd28-bdd55899b713@=
netpurgatory.com/</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[5]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/4c1462b7-ea1c-4a36...@googlegroups.com/" rel=3D"noreferrer" target=
=3D"_blank">https://gnusha.org/pi/bitcoindev/4c1462b7-ea1c-4a36...@googlegr=
oups.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/4c1462b7-ea1c=
-4a36-be81-7c3719157fabn@googlegroups.com/" rel=3D"noreferrer" target=3D"_b=
lank">https://gnusha.org/pi/bitcoindev/4c1462b7-ea1c-4a36-be81-7c3719157fab=
n@googlegroups.com/</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[6]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/a116fba3-5948-48d2...@googlegroups.com/" rel=3D"noreferrer" target=
=3D"_blank">https://gnusha.org/pi/bitcoindev/a116fba3-5948-48d2...@googlegr=
oups.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/a116fba3-5948=
-48d2-a787-639a3564d006n@googlegroups.com/" rel=3D"noreferrer" target=3D"_b=
lank">https://gnusha.org/pi/bitcoindev/a116fba3-5948-48d2-a787-639a3564d006=
n@googlegroups.com/</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[7]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/846b668f-8386-4869...@googlegroups.com/" rel=3D"noreferrer" target=
=3D"_blank">https://gnusha.org/pi/bitcoindev/846b668f-8386-4869...@googlegr=
oups.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/846b668f-8386=
-4869-a3b1-55d346efbea1n@googlegroups.com/" rel=3D"noreferrer" target=3D"_b=
lank">https://gnusha.org/pi/bitcoindev/846b668f-8386-4869-a3b1-55d346efbea1=
n@googlegroups.com/</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[8]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/CALeFGL1-LKPWd7YRS110ut8tX=3DwruqgLEazRA5...@mail.gmail.com/" rel=3D=
"noreferrer" target=3D"_blank">https://gnusha.org/pi/bitcoindev/CALeFGL1-LK=
PWd7YRS110ut8tX=3DwruqgLEazRA5...@mail.gmail.com/</a> &lt;<a href=3D"https:=
//gnusha.org/pi/bitcoindev/CALeFGL1-LKPWd7YRS110ut8tX=3DwruqgLEazRA5nVw9siY=
CPj4A@mail.gmail.com/" rel=3D"noreferrer" target=3D"_blank">https://gnusha.=
org/pi/bitcoindev/CALeFGL1-LKPWd7YRS110ut8tX=3DwruqgLEazRA5nVw9siYCPj4A@mai=
l.gmail.com/</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[9] <a href=3D"https://gnusha.org/pi/=
bitcoindev/ZgePPvbf...@petertodd.org/" rel=3D"noreferrer" target=3D"_blank"=
>https://gnusha.org/pi/bitcoindev/ZgePPvbf...@petertodd.org/</a><br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"https://gnusha.org/pi/=
bitcoindev/ZgePPvbfrr4wZG7k@petertodd.org/" rel=3D"noreferrer" target=3D"_b=
lank">https://gnusha.org/pi/bitcoindev/ZgePPvbfrr4wZG7k@petertodd.org/</a>&=
gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[10]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/f9435999-42df-46b5...@mattcorallo.com/" rel=3D"noreferrer" target=3D=
"_blank">https://gnusha.org/pi/bitcoindev/f9435999-42df-46b5...@mattcorallo=
.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/f9435999-42df-46b=
5-86e2-7ba0336a9bf2@mattcorallo.com/" rel=3D"noreferrer" target=3D"_blank">=
https://gnusha.org/pi/bitcoindev/f9435999-42df-46b5-86e2-7ba0336a9bf2@mattc=
orallo.com/</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[11] <a href=3D"https://gnusha.org/pi=
/bitcoindev/ZgWRu32FXzqqg69V@console/" rel=3D"noreferrer" target=3D"_blank"=
>https://gnusha.org/pi/bitcoindev/ZgWRu32FXzqqg69V@console/</a><br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"https://gnusha.org/pi/=
bitcoindev/ZgWRu32FXzqqg69V@console/" rel=3D"noreferrer" target=3D"_blank">=
https://gnusha.org/pi/bitcoindev/ZgWRu32FXzqqg69V@console/</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[12]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/CALZpt+E8DohYEJ9aO+FiF6+E...@mail.gmail.com/" rel=3D"noreferrer" tar=
get=3D"_blank">https://gnusha.org/pi/bitcoindev/CALZpt+E8DohYEJ9aO+FiF6+E..=
.@mail.gmail.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/CALZp=
t+E8DohYEJ9aO+FiF6+EKMCP5oEbHSKSXpq0VKVBhJLhrw@mail.gmail.com/" rel=3D"nore=
ferrer" target=3D"_blank">https://gnusha.org/pi/bitcoindev/CALZpt+E8DohYEJ9=
aO+FiF6+EKMCP5oEbHSKSXpq0VKVBhJLhrw@mail.gmail.com/</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[13]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/53a0015c-b76a-441a...@murch.one/" rel=3D"noreferrer" target=3D"_blan=
k">https://gnusha.org/pi/bitcoindev/53a0015c-b76a-441a...@murch.one/</a> &l=
t;<a href=3D"https://gnusha.org/pi/bitcoindev/53a0015c-b76a-441a-920b-32bd8=
8d5e778@murch.one/" rel=3D"noreferrer" target=3D"_blank">https://gnusha.org=
/pi/bitcoindev/53a0015c-b76a-441a-920b-32bd88d5e778@murch.one/</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[14]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/ae482890-bce3-468f...@achow101.com/" rel=3D"noreferrer" target=3D"_b=
lank">https://gnusha.org/pi/bitcoindev/ae482890-bce3-468f...@achow101.com/<=
/a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/ae482890-bce3-468f-866d=
-c555b80b0644@achow101.com/" rel=3D"noreferrer" target=3D"_blank">https://g=
nusha.org/pi/bitcoindev/ae482890-bce3-468f-866d-c555b80b0644@achow101.com/<=
/a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[15]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/ppBS1tfMU3SFX85kmIBVBd0WpT5Wof_oSBXsuizh7692AUDw2TojfvCqvcvlmsy9E69q=
fWMxK-UZWawf8IDApPqF7bXOH4gwU1c2jS4xojo=3D@protonmail.com/" rel=3D"noreferr=
er" target=3D"_blank">https://gnusha.org/pi/bitcoindev/ppBS1tfMU3SFX85kmIBV=
Bd0WpT5Wof_oSBXsuizh7692AUDw2TojfvCqvcvlmsy9E69qfWMxK-UZWawf8IDApPqF7bXOH4g=
wU1c2jS4xojo=3D@protonmail.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bi=
tcoindev/ppBS1tfMU3SFX85kmIBVBd0WpT5Wof_oSBXsuizh7692AUDw2TojfvCqvcvlmsy9E6=
9qfWMxK-UZWawf8IDApPqF7bXOH4gwU1c2jS4xojo=3D@protonmail.com/" rel=3D"norefe=
rrer" target=3D"_blank">https://gnusha.org/pi/bitcoindev/ppBS1tfMU3SFX85kmI=
BVBd0WpT5Wof_oSBXsuizh7692AUDw2TojfvCqvcvlmsy9E69qfWMxK-UZWawf8IDApPqF7bXOH=
4gwU1c2jS4xojo=3D@protonmail.com/</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[16]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/ad284018-e99c-4552...@googlegroups.com/" rel=3D"noreferrer" target=
=3D"_blank">https://gnusha.org/pi/bitcoindev/ad284018-e99c-4552...@googlegr=
oups.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/ad284018-e99c=
-4552-88ca-11b9ed340661n@googlegroups.com/" rel=3D"noreferrer" target=3D"_b=
lank">https://gnusha.org/pi/bitcoindev/ad284018-e99c-4552-88ca-11b9ed340661=
n@googlegroups.com/</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0[17]<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<a href=3D"https://gnusha.org/pi/bitc=
oindev/CAMHHROw9mZJRnTbUo76PdqwJU=3D=3DYJMvd9Qrst+...@mail.gmail.com/" rel=
=3D"noreferrer" target=3D"_blank">https://gnusha.org/pi/bitcoindev/CAMHHROw=
9mZJRnTbUo76PdqwJU=3D=3DYJMvd9Qrst+...@mail.gmail.com/</a> &lt;<a href=3D"h=
ttps://gnusha.org/pi/bitcoindev/CAMHHROw9mZJRnTbUo76PdqwJU=3D=3DYJMvd9Qrst+=
nmyypaedYZgg@mail.gmail.com/" rel=3D"noreferrer" target=3D"_blank">https://=
gnusha.org/pi/bitcoindev/CAMHHROw9mZJRnTbUo76PdqwJU=3D=3DYJMvd9Qrst+nmyypae=
dYZgg@mail.gmail.com/</a>&gt;<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0-- <br>
&gt;=C2=A0 =C2=A0 =C2=A0You received this message because you are subscribe=
d to the Google<br>
&gt;=C2=A0 =C2=A0 =C2=A0Groups &quot;Bitcoin Development Mailing List&quot;=
 group.<br>
&gt;=C2=A0 =C2=A0 =C2=A0To unsubscribe from this group and stop receiving e=
mails from it,<br>
&gt;=C2=A0 =C2=A0 =C2=A0send an email to <a href=3D"mailto:bitcoindev%2Buns=
ubscribe@googlegroups.com" target=3D"_blank">bitcoindev+unsubscribe@googleg=
roups.com</a><br>
&gt;=C2=A0 =C2=A0 =C2=A0&lt;mailto:<a href=3D"mailto:bitcoindev%2Bunsubscri=
be@googlegroups.com" target=3D"_blank">bitcoindev+unsubscribe@googlegroups.=
com</a>&gt;.<br>
&gt;=C2=A0 =C2=A0 =C2=A0To view this discussion on the web visit<br>
&gt;=C2=A0 =C2=A0 =C2=A0<a href=3D"https://groups.google.com/d/msgid/bitcoi=
ndev/7b4e2223-0b96-4ca0-a441-aebcfc7b0bben%40googlegroups.com" rel=3D"noref=
errer" target=3D"_blank">https://groups.google.com/d/msgid/bitcoindev/7b4e2=
223-0b96-4ca0-a441-aebcfc7b0bben%40googlegroups.com</a> &lt;<a href=3D"http=
s://groups.google.com/d/msgid/bitcoindev/7b4e2223-0b96-4ca0-a441-aebcfc7b0b=
ben%40googlegroups.com?utm_medium=3Demail&amp;utm_source=3Dfooter" rel=3D"n=
oreferrer" target=3D"_blank">https://groups.google.com/d/msgid/bitcoindev/7=
b4e2223-0b96-4ca0-a441-aebcfc7b0bben%40googlegroups.com?utm_medium=3Demail&=
amp;utm_source=3Dfooter</a>&gt;.<br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; -- <br>
&gt; Sergi.<br>
&gt; <br>
&gt; -- <br>
&gt; You received this message because you are subscribed to the Google <br=
>
&gt; Groups &quot;Bitcoin Development Mailing List&quot; group.<br>
&gt; To unsubscribe from this group and stop receiving emails from it, send=
 <br>
&gt; an email to <a href=3D"mailto:bitcoindev%2Bunsubscribe@googlegroups.co=
m" target=3D"_blank">bitcoindev+unsubscribe@googlegroups.com</a> <br>
&gt; &lt;mailto:<a href=3D"mailto:bitcoindev%2Bunsubscribe@googlegroups.com=
" target=3D"_blank">bitcoindev+unsubscribe@googlegroups.com</a>&gt;.<br>
&gt; To view this discussion on the web visit <br>
&gt; <a href=3D"https://groups.google.com/d/msgid/bitcoindev/CAEYHFxV_8_Jw6=
1tysL_cV_xiXBcRyA3e%3DCGHGuSCgm%2B-4WxT9w%40mail.gmail.com" rel=3D"noreferr=
er" target=3D"_blank">https://groups.google.com/d/msgid/bitcoindev/CAEYHFxV=
_8_Jw61tysL_cV_xiXBcRyA3e%3DCGHGuSCgm%2B-4WxT9w%40mail.gmail.com</a> &lt;<a=
 href=3D"https://groups.google.com/d/msgid/bitcoindev/CAEYHFxV_8_Jw61tysL_c=
V_xiXBcRyA3e%3DCGHGuSCgm%2B-4WxT9w%40mail.gmail.com?utm_medium=3Demail&amp;=
utm_source=3Dfooter" rel=3D"noreferrer" target=3D"_blank">https://groups.go=
ogle.com/d/msgid/bitcoindev/CAEYHFxV_8_Jw61tysL_cV_xiXBcRyA3e%3DCGHGuSCgm%2=
B-4WxT9w%40mail.gmail.com?utm_medium=3Demail&amp;utm_source=3Dfooter</a>&gt=
;.<br>
<br>
-- <br>
You received this message because you are subscribed to the Google Groups &=
quot;Bitcoin Development Mailing List&quot; group.<br>
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:bitcoindev%2Bunsubscribe@googlegroups.com" target=
=3D"_blank">bitcoindev+unsubscribe@googlegroups.com</a>.<br>
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/d/msgid/bitcoindev/fb52ccb5-9942-4db8-b880-3c06ebc47cd1%40achow101.com" =
rel=3D"noreferrer" target=3D"_blank">https://groups.google.com/d/msgid/bitc=
oindev/fb52ccb5-9942-4db8-b880-3c06ebc47cd1%40achow101.com</a>.<br>
</blockquote></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;Bitcoin Development Mailing List&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:bitcoindev+unsubscribe@googlegroups.com">bitcoind=
ev+unsubscribe@googlegroups.com</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/d/msgid/bitcoindev/CAO3Pvs8B%2BNVWFUxg6zfNXYrAfX9mhqpj9ZpNSEr4HWUbJKnNmw=
%40mail.gmail.com?utm_medium=3Demail&utm_source=3Dfooter">https://groups.go=
ogle.com/d/msgid/bitcoindev/CAO3Pvs8B%2BNVWFUxg6zfNXYrAfX9mhqpj9ZpNSEr4HWUb=
JKnNmw%40mail.gmail.com</a>.<br />

--0000000000001e26e306167aa9ca--