summaryrefslogtreecommitdiff
path: root/5e/09391c157a0855ad626756bc14848d7d7635ce
blob: c4fd7cadb691c521d55f3f9da48c676038aa8c8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
Delivery-date: Sat, 20 Apr 2024 14:15:40 -0700
Received: from mail-qv1-f63.google.com ([209.85.219.63])
	by mail.fairlystable.org with esmtps  (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
	(Exim 4.94.2)
	(envelope-from <bitcoindev+bncBD6MXFOIR4JBB5HASCYQMGQEIUPPVCY@googlegroups.com>)
	id 1ryI3f-0007K7-AK
	for bitcoindev@gnusha.org; Sat, 20 Apr 2024 14:15:40 -0700
Received: by mail-qv1-f63.google.com with SMTP id 6a1803df08f44-69b31b7df0dsf48263666d6.3
        for <bitcoindev@gnusha.org>; Sat, 20 Apr 2024 14:15:39 -0700 (PDT)
ARC-Seal: i=2; a=rsa-sha256; t=1713647733; cv=pass;
        d=google.com; s=arc-20160816;
        b=QiBooL1pbZsIs6JQ/nG5hOsAoSXrRkXb/f746SQvK4DXJUXoeNRKJtspcz2EV5HTy3
         qkpP2GZHHl2ySCf45g5BH95qtOZmOwcYsCeYaxsq0/EJdJuqILf3Elz+TwkPFMSCFYdp
         eZWTvjdw/vTrEOXPx3ZBPg/4b+z/8kCpoxVBLNaPzh6A2ab5nK9lJymiJZTg3lzd3w+t
         RJ5DkSXYzxFTP36B19pNk1w13f1cSXZnG8pbIG3ZJdblqJ4eaDJwAhjjJMlzaRyV+nbB
         ObP5VK7KoIalinurS+DHfv+NZTBKX8CtINfL614WIaRclhu3IODRVbeelN2x3kc4OCS2
         xDag==
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=G16tuSvQphgkLua5bWG1wQgQVFv5ja03PObOVfEluBA=;
        fh=6qtgWBNJ60z1YvUUAQ6LdPcDaaFo8EKpedMPATH1b/E=;
        b=ffYU3+AEsImfmvb6KVSQvAvosdIh8ghDsfJ/CK9FFggVYbbwRviU23Y4vaL8u6Ie9Q
         gTQOUOt4XsFWiUXeLnUGIdJf6eHlIfhTk/wg2PC83VkU+Uwdc2ukQX+Dd5EPPDn+kpgb
         5b8aQQ/LPTMumrTMgT1tRdGvdmlwKiTdMrleCnmpNURXc+d/JaCKcGYPDC1MwEDPWQgX
         jHSxtYTNCMkr4bt0raSftBdD95u5/fJUEadftxXGyQGrSqUQkIXF6bkUBvxitX2JK3HA
         Uq+njuNF/7W6stt/QY7rvJbyuD9LJSwVpFv70AA7OXIUlsz1mFztZntKOsYaf8SazvxV
         FcGg==;
        darn=gnusha.org
ARC-Authentication-Results: i=2; gmr-mx.google.com;
       dkim=pass header.i=@gmail.com header.s=20230601 header.b=BGXy9c1y;
       spf=pass (google.com: domain of steven.j.lee@gmail.com designates 2607:f8b0:4864:20::136 as permitted sender) smtp.mailfrom=steven.j.lee@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=1713647733; x=1714252533; 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=G16tuSvQphgkLua5bWG1wQgQVFv5ja03PObOVfEluBA=;
        b=xcYARyiT+mS5kHg1a1zYi7zZwdUmK+oiBXRD4vvjU4ssQiKJHblzc/0PZSnEAImBFB
         I5kN5xUXuHdwEGHRPZfWFFe0lewfuSYHvIK7axz4903w7dgrTkhaiTGr57BY+dol+sZa
         dD08kW5lhgN/k8wAhnr7IC6tD0nBj5Ddo5JP8Gsq4K3l5WB0BGjAlkDNZfU4FWLMjU5z
         2bgZUWCTY+ZcXRkbRayGx7NqwVBcMh29yPlunK1y8RJQ1461qQ+KlZrviwaP65T91MEG
         hF4ikPiF6jV77gs+M+oSyaZocdMOdP5qOtC2VxyTNa1mSQiL69Jxo1JToec9HJ5Yam8b
         nurQ==
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=gmail.com; s=20230601; t=1713647733; x=1714252533; 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=G16tuSvQphgkLua5bWG1wQgQVFv5ja03PObOVfEluBA=;
        b=QVp7xPVPrgtU/LXEpWg/sglpwkEzCT7aev4xXIxzHUB1Xj5fZCOFhpPGpzK3s617jk
         J7syD0s5rIdp3paunG2k7wtGcPh/za/mJ9pqDU78fiWBW/+U/J3/QoBx/n6gxBckaLuT
         B7DiABuW8NcGNhq4nRc/UIu9j3kI5XZOqPjpsF3EjVflzdPneRVA1cE7d7iPTyABViDo
         W/bherJJ4FkpuVXEJ481SVq9JEw+58/QpbewXUemkuej1f02ulvLRI6QdgBT8E+g5pNC
         IV2dw9SF7F2dB7iPqfs6Vz+ZcR0snpTvlRVP8JaH7gaI3yPckX9ZytN6cAU7sh5k294B
         kxPw==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=1e100.net; s=20230601; t=1713647733; x=1714252533;
        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=G16tuSvQphgkLua5bWG1wQgQVFv5ja03PObOVfEluBA=;
        b=B3sUX9HDSVWLiQIKLjC27wdjAxmvOJZ9UrhO6TWOmNQ+YhG3cKrKBrU8f0ue2heh3P
         1+AOLvbnaL7tsqvMtqoR+pSN3XYvUvuiiybwrWBbcOly2secGcbqv860ibbOUD/bkNvs
         DtnOnM+SY5qyzjwcjmPYI2xe8fpxrJeEvN5hCTjAJBT/BFfh2m0/F0W8bXF8IZcsumz7
         Frx7Rb5C4ELndpgNC0HkHelqhiJgMzLL10DBgndU0lEz3mA1qSyGThGxyHHMoMSGrlwN
         s66jo/UCUt09YknY3ykcRokrhgg8EMhR0LvTm4KTIg5DPSvPrF93PSUXAN7W0jjAUCdu
         E0xg==
Sender: bitcoindev@googlegroups.com
X-Forwarded-Encrypted: i=2; AJvYcCXtVUGx4Izs3RygpxyoWeVhDHULcxJIvtP06Q6p5gcmsKiAaKBjNbMgU7+ij7sHXn11wyn8M1BZn+4apNCVxN9gjGpAH4M=
X-Gm-Message-State: AOJu0Yxoh7R2Nk3P7672QQGuPW8Dt3VJ3zI4/jAV+8xEAX88ad0wOVzM
	u42HqIKwj3KudtXcg+UIggCjezZ4bgxh7YkzxPeSPB00QuY+qSXm
X-Google-Smtp-Source: AGHT+IEwmV1eO5ubectQvfOaoVmlGt/ED41VIb0SClhXLE/5u+hj3yC8o2nxv2GbeVR6hGttMy7A1w==
X-Received: by 2002:a0c:da82:0:b0:69b:7acd:2b94 with SMTP id z2-20020a0cda82000000b0069b7acd2b94mr7156367qvj.0.1713647732864;
        Sat, 20 Apr 2024 14:15:32 -0700 (PDT)
X-BeenThere: bitcoindev@googlegroups.com
Received: by 2002:ad4:5cc4:0:b0:69b:14e6:578f with SMTP id 6a1803df08f44-6a05d77fe65ls34474616d6.2.-pod-prod-05-us;
 Sat, 20 Apr 2024 14:15:32 -0700 (PDT)
X-Received: by 2002:a05:6214:5299:b0:69b:57c5:5605 with SMTP id kj25-20020a056214529900b0069b57c55605mr134656qvb.4.1713647731932;
        Sat, 20 Apr 2024 14:15:31 -0700 (PDT)
Received: by 2002:a05:620a:190e:b0:78f:622:a7d8 with SMTP id af79cd13be357-78f08ff52ebms85a;
        Sat, 20 Apr 2024 13:46:58 -0700 (PDT)
X-Received: by 2002:ad4:444c:0:b0:6a0:6306:caa1 with SMTP id l12-20020ad4444c000000b006a06306caa1mr3838265qvt.14.1713646017306;
        Sat, 20 Apr 2024 13:46:57 -0700 (PDT)
ARC-Seal: i=1; a=rsa-sha256; t=1713646017; cv=none;
        d=google.com; s=arc-20160816;
        b=yUJWGz4zGegrmTRPh7OGbFxo4NPBxt63BZXDbryZYylOcg3fkU8oRhxoFQ+sAgovlj
         KReuIfB3Z7GhKxTPF94Eo55h6DH3pyOS5R5BGwiKBza9O4AzGOul8ii1yzMUl36fMKTz
         DBYSa+Q9FmPyyRu9liX3qrd8SXJE6dRQPTZhak3FZJy2l7YhSJRqcf4MhC699m8reOTZ
         M91gJwlIJ8JCeyccT0uOZhXeuWJMKr2qeSeRCcc78O1UNfh8WMibgix6UmwMZO36ujcW
         55bAuO3Yfx3wIb842xdv1BVbSNCm3PAR67umUHBbt/782dUwn403NbyAPrc1f1qRqpqG
         KA4Q==
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=uepJZgYir044f8MIPzEyxALaKq2c0YBuYx8ccS9tuUA=;
        fh=FaZol9Uk6gnK+uGtcSFJW2nlQY6QrNwlPUIRM6Aafbo=;
        b=QmUNz7KoJzkPkjZPWdukuZHmOdbKHaXWtQfn2Mza3z0+gkovwFRlAz9/oJID7G5zUX
         5QC9RdvHnDtNY02m03DfrmlxEgOAQuZc2ZH5sO6DlkMidpcJ31KsMae7Xr2IEMj1IVEW
         +7btyyQbEgjms8pDL410PCTNBNeca1gPL6K9//8pNZKkphwcA2blPdtqFhqhy0EGig7b
         cB5hAUU+G8HBo5HBYgI/mXgsK8T/fGIohCf2MtQ1JKVECR5UmUWCRCYC9UKoHDFSiTjH
         60/xTa2s4JaG+RgP1k6Dn+8DgJM13CAimZQhjZV0+60ztal7eepG655Niu45TKOqfELv
         7TPA==;
        dara=google.com
ARC-Authentication-Results: i=1; gmr-mx.google.com;
       dkim=pass header.i=@gmail.com header.s=20230601 header.b=BGXy9c1y;
       spf=pass (google.com: domain of steven.j.lee@gmail.com designates 2607:f8b0:4864:20::136 as permitted sender) smtp.mailfrom=steven.j.lee@gmail.com;
       dmarc=pass (p=NONE sp=QUARANTINE dis=NONE) header.from=gmail.com
Received: from mail-il1-x136.google.com (mail-il1-x136.google.com. [2607:f8b0:4864:20::136])
        by gmr-mx.google.com with ESMTPS id i8-20020a0cedc8000000b0069b504210dfsi486780qvr.1.2024.04.20.13.46.57
        for <bitcoindev@googlegroups.com>
        (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128);
        Sat, 20 Apr 2024 13:46:57 -0700 (PDT)
Received-SPF: pass (google.com: domain of steven.j.lee@gmail.com designates 2607:f8b0:4864:20::136 as permitted sender) client-ip=2607:f8b0:4864:20::136;
Received: by mail-il1-x136.google.com with SMTP id e9e14a558f8ab-36b30909b01so13890915ab.2
        for <bitcoindev@googlegroups.com>; Sat, 20 Apr 2024 13:46:57 -0700 (PDT)
X-Received: by 2002:a92:c241:0:b0:36b:275a:7404 with SMTP id
 k1-20020a92c241000000b0036b275a7404mr8082481ilo.16.1713646016423; Sat, 20 Apr
 2024 13:46:56 -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> <070755a0-10e9-4903-9524-dd8ef98c1c8b@achow101.com>
In-Reply-To: <070755a0-10e9-4903-9524-dd8ef98c1c8b@achow101.com>
From: Steve Lee <steven.j.lee@gmail.com>
Date: Sat, 20 Apr 2024 13:46:43 -0700
Message-ID: <CABu3BAeYqzp439z8Ug6_4QdhvSQ0fCysz-t2h1zzp2pX6Hsebg@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="00000000000014746406168d4efe"
X-Original-Sender: steven.j.lee@gmail.com
X-Original-Authentication-Results: gmr-mx.google.com;       dkim=pass
 header.i=@gmail.com header.s=20230601 header.b=BGXy9c1y;       spf=pass
 (google.com: domain of steven.j.lee@gmail.com designates 2607:f8b0:4864:20::136
 as permitted sender) smtp.mailfrom=steven.j.lee@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 (/)

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

Wasn't there evidence provided that Kanzure does not want this
responsibility without being paid?

I'm confused by this process that we don't even ask the people if they want
the responsibility? I think only Laolu has chimed in to commit to it?

On Sat, Apr 20, 2024 at 12:30=E2=80=AFPM 'Ava Chow' via Bitcoin Development=
 Mailing
List <bitcoindev@googlegroups.com> wrote:

> Since we're now past the deadline of April 19th, I'd like to inform
> everyone of what will happen on Monday.
>
> There has not been any actual objections to the nominees nor have there
> been any suggestions on choosing a subset of them since my last email.
> As such, there is rough consensus on adding Kanzure, Murch, Jonatack,
> Ruben, and Roasbeef as BIP editors, and they will be added on Monday
> April 22nd.
>
> Ava
>
> On 04/16/2024 01:08 PM, 'Ava Chow' via Bitcoin Development Mailing List
> 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 objection=
s
> > 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 reall=
y
> > 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 ou=
t
> > 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 peop=
le
> >> 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 ne=
ed
> >> 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 trac=
k
> >> 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. Har=
ding
> 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
> appears
> >>          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
> above
> >>          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 t=
o
> >>          have a
> >>          merged BIP that they co-authored, although I believe there ar=
e
> >>          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 ar=
e
> >>          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
> the
> >>          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
> already
> >>          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 Googl=
e
> >>      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
> .
>
> --
> 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/070755a0-10e9-4903-9524-dd8e=
f98c1c8b%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/CABu3BAeYqzp439z8Ug6_4QdhvSQ0fCysz-t2h1zzp2pX6Hsebg%40mail.gmail=
.com.

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

<div dir=3D"auto">Wasn&#39;t there evidence provided that Kanzure does not =
want this responsibility without being paid?</div><div dir=3D"auto"><br></d=
iv><div dir=3D"auto">I&#39;m confused by this process that we don&#39;t eve=
n ask the people if they want the responsibility? I think only Laolu has ch=
imed in to commit to it?</div><div><br><div class=3D"gmail_quote"><div dir=
=3D"ltr" class=3D"gmail_attr">On Sat, Apr 20, 2024 at 12:30=E2=80=AFPM &#39=
;Ava Chow&#39; via Bitcoin Development Mailing List &lt;<a href=3D"mailto:b=
itcoindev@googlegroups.com">bitcoindev@googlegroups.com</a>&gt; wrote:<br><=
/div><blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;bo=
rder-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-co=
lor:rgb(204,204,204)">Since we&#39;re now past the deadline of April 19th, =
I&#39;d like to inform <br>
everyone of what will happen on Monday.<br>
<br>
There has not been any actual objections to the nominees nor have there <br=
>
been any suggestions on choosing a subset of them since my last email. <br>
As such, there is rough consensus on adding Kanzure, Murch, Jonatack, <br>
Ruben, and Roasbeef as BIP editors, and they will be added on Monday <br>
April 22nd.<br>
<br>
Ava<br>
<br>
On 04/16/2024 01:08 PM, &#39;Ava Chow&#39; via Bitcoin Development Mailing =
List <br>
wrote:<br>
&gt; While I don&#39;t disagree that 5 or 6 people seems like a lot to add =
at<br>
&gt; once, it&#39;s not clear to me how we should decide which subset of th=
e<br>
&gt; nominees should be added. As it is now, I have only seen an actual<br>
&gt; objection to Kanzure and Ruben from /dev/fd0, and no explicit objectio=
ns<br>
&gt; to anyone else. It seems like the vast majority of people don&#39;t sh=
are<br>
&gt; their concerns either as both Kanzure and Ruben continue to be endorse=
d<br>
&gt; by many others.<br>
&gt; <br>
&gt; Looking at the endorsements each candidate has received, the current<b=
r>
&gt; counts are:<br>
&gt; * Kanzure - 17 for, 1 against<br>
&gt; * Murch - 13 for<br>
&gt; * Jonatack - 13 for<br>
&gt; * Ruben - 12 for, 1 against<br>
&gt; * Roasbeef - 9 for<br>
&gt; * Michael Folkson - none<br>
&gt; <br>
&gt; However, I don&#39;t want this process to become a popularity contest =
and<br>
&gt; require some kind of formal voting. Rather I&#39;d prefer that this pr=
ocess<br>
&gt; be something more like how Bitcoin Core maintainers are added - by<br>
&gt; achieving rough consensus. Without any explicit objections to any of<b=
r>
&gt; these candidates, I&#39;m inclined to move forward with adding the 5 w=
ho<br>
&gt; have received endorsements. Having to pick &quot;winners&quot; from th=
is list<br>
&gt; seems like a quick way to stir up drama that I don&#39;t think anyone =
really<br>
&gt; wants to deal with.<br>
&gt; <br>
&gt; I do want to note that neither Kanzure, Ruben, nor Roasbeef have poste=
d<br>
&gt; on this list that they are willing to be BIP editors. I have reached o=
ut<br>
&gt; to all 3 of them privately, and received responses from Kanzure and<br=
>
&gt; Ruben that indicate that they probably are willing, but public<br>
&gt; confirmation from them on this list would also be nice. I have not<br>
&gt; received a response from Roasbeef.<br>
&gt; <br>
&gt; Ava<br>
&gt; <br>
&gt; On 04/11/2024 10:22 AM, Sergi Delgado Segura wrote:<br>
&gt;&gt;=C2=A0 =C2=A0&gt; I would prefer having more (9+?) than less folks =
on this task, so<br>
&gt;&gt; personal preferences are easily ignored and overwritten by the gro=
up<br>
&gt;&gt; majority.<br>
&gt;&gt;<br>
&gt;&gt; I disagree with that, the more doesn&#39;t really the better here.=
 Having<br>
&gt;&gt; too many editors may result in a tragedy of the commons, in which =
people<br>
&gt;&gt; just commit to the job because many others do, and they do not end=
 up<br>
&gt;&gt; doing as much because they expect others to do the it. This does n=
ot<br>
&gt;&gt; only make the process look bad but may burnout the ones that end u=
p<br>
&gt;&gt; doing the job, given their time commitment ends up being too far f=
rom<br>
&gt;&gt; their expectations.<br>
&gt;&gt;<br>
&gt;&gt; I think being more moderate with the amount of people is better, a=
nd<br>
&gt;&gt; gives us leeway in case the workload ends up being excessive and w=
e need<br>
&gt;&gt; to add more people (plus discourage people from joining and slacki=
ng off).<br>
&gt;&gt;<br>
&gt;&gt; I think 3 more people should be a good number to start from.<br>
&gt;&gt; I&#39;d personally vouch for Murch, Kanzure, and Ruben based on th=
eir track<br>
&gt;&gt; record in the space<br>
&gt;&gt;<br>
&gt;&gt; On Tue, Apr 2, 2024 at 4:30=E2=80=AFPM nvk &lt;<a href=3D"mailto:r=
dlfnvk@gmail.com" target=3D"_blank">rdlfnvk@gmail.com</a><br>
&gt;&gt; &lt;mailto:<a href=3D"mailto:rdlfnvk@gmail.com" target=3D"_blank">=
rdlfnvk@gmail.com</a>&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; +1 for<br>
&gt;&gt; Kanzure<br>
&gt;&gt; RubenSomsen<br>
&gt;&gt; Seccour<br>
&gt;&gt; Jon Atack<br>
&gt;&gt; Roasbeef<br>
&gt;&gt;<br>
&gt;&gt; I would prefer having more (9+?) than less folks on this task, so<=
br>
&gt;&gt; personal preferences are easily ignored and overwritten by the gro=
up<br>
&gt;&gt; majority.<br>
&gt;&gt;<br>
&gt;&gt; BIPs were intended as a means to collect ideas, not enforce ideas.=
<br>
&gt;&gt;<br>
&gt;&gt; I&#39;d like to return to that.<br>
&gt;&gt;<br>
&gt;&gt; - NVK (temp gmail account)<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 On Monday, April 1, 2024 at 5:16:54=E2=80=AFPM=
 UTC-4 David A. Harding wrote:<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 On 2024-03-28 10:04, Matt Corall=
o wrote:<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&gt; Please provide justif=
ication rather than simply saying &quot;I<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 like Bob!&quot;.<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Using only comments from the mai=
ling list, the following appears<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 to be<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 the candidate list along with th=
e current support. Asterisks denote<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 candidates who indicated their w=
illingness to accept the role.<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 - Bryan &quot;Kanzure&quot; Bish=
op, recommended by Ava Chow[1], Chris<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Stewart[3],<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Michael Folkson[6], Peter Todd[9=
], Matt Corallo[10], Brandon<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Black[11],<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Antoine Riard[12], Murch[13], An=
toine Poinsot[15], John<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Carvalho[16]<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 - Ruben Somsen, recommended by A=
va Chow[1], Chris Stewart[3],<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Michael<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Folkson[6], Antoine Riard[12], M=
urch[13], Antoine Poinsot[15], John<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Carvalho[16]<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 - Jon Atack*, recommended by Luk=
e Dashjr[2], Chris Stewart[3],<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 /dev/fd0[5][7],<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Brandon Black[11], Antoine Riard=
[12], Ava Chow[14], John<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Carvalho[16]<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 - Olaoluwa &quot;Roasbeef&quot; =
Osuntokun, recommended by Chris<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Stewart[3], John<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 C. Vernaleo[4], /dev/fd0[5][7], =
Keagan McClelland[8], Antoine<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Riard[12], Ava Chow[14]<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 - Mark &quot;Murch&quot; Erhardt=
*, recommended by Michael Folkson[6], Keagan<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 McClelland[8], Matt Corallo[10],=
 Brandon Black[11], Antoine<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Riard[12],<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Ava Chow[14]<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 - Michael Folkson*<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Note: Luke Dashjr proposed[17] S=
eccour and Greg Tonoski for<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 &quot;non-dev<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 triaging&quot;, Tonoski proposed=
 himself[18] for &quot;BIP editor&quot;, and<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Antoine<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Riard[12] proposed Seccour for &=
quot;decentralized PM&quot;.<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 I searched the BIPs repo by comm=
enter to see if any of the above<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 candidates had been especially a=
ctive there, which is listed<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 below as:<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 total PRs they commented on (num=
ber still open/number closed).<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 - 21 (1/20) commenter:kanzure<br=
>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 - 3 (2/1) commenter:rubensomsen<=
br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 - 15 (0/15) commenter:jonatack<b=
r>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 - 18 (2/16) commenter:roasbeef<b=
r>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 - 10 (6/4) commenter:Murchandamu=
s<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 - 57 (6/51) commenter:michaelfol=
kson<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 I&#39;ll also note that Osuntoku=
n is the only member of the set to<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 have a<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 merged BIP that they co-authored=
, although I believe there are<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 far-along<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 draft BIPs for both Murch (termi=
nology) and Somsen (Silent<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Payments). I<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 don&#39;t think this should be a=
 requirement, but I do think it<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 demonstrates<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 familiarity with the process.<br=
>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Speaking only for myself, I thin=
k all of the candidates above with<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 multiple recommendations from ot=
her community participants are<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 fully<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 qualified for the role, so I&#39=
;ll only provide a detailed<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 justification<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 for the person who would be my f=
irst pick: Murch is not only a<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 longstanding and broadly liked B=
itcoin contributor, but (as Corallo<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 mentioned) he has worked on stan=
dardizing terminology through a<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 draft<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 BIP. In addition, he provided an=
 extremely detailed review of<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 all 300<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 pages of a draft of Mastering Bi=
tcoin (3rd edition) and has<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 reviewed<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 drafts of over 200 weekly Optech=
 newsletters, in both cases<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 significantly improving the accu=
racy and comprehensibility of the<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 documentation. To me, that seems=
 very similar to the work we&#39;d<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 ask him<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 to perform as a BIPs editor and =
it&#39;s something that he&#39;s already<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 doing,<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 so I think there&#39;s an excell=
ent fit of person to role.<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 -Dave<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [1]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/2092f7ff-4860-47f8...@achow101.com/" rel=3D"noreferrer" target=
=3D"_blank">https://gnusha.org/pi/bitcoindev/2092f7ff-4860-47f8...@achow101=
.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/2092f7ff-4860-47f=
8-ba1a-c9d97927551e@achow101.com/" rel=3D"noreferrer" target=3D"_blank">htt=
ps://gnusha.org/pi/bitcoindev/2092f7ff-4860-47f8-ba1a-c9d97927551e@achow101=
.com/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [2]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/9288df7b-f2e9-4106...@dashjr.org/" rel=3D"noreferrer" target=3D=
"_blank">https://gnusha.org/pi/bitcoindev/9288df7b-f2e9-4106...@dashjr.org/=
</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/9288df7b-f2e9-4106-b84=
3-c1ff8f8a62a3@dashjr.org/" rel=3D"noreferrer" target=3D"_blank">https://gn=
usha.org/pi/bitcoindev/9288df7b-f2e9-4106-b843-c1ff8f8a62a3@dashjr.org/</a>=
&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [3]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/d1e7183c-30e6-4f1a...@googlegroups.com/" rel=3D"noreferrer" tar=
get=3D"_blank">https://gnusha.org/pi/bitcoindev/d1e7183c-30e6-4f1a...@googl=
egroups.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/d1e7183c-3=
0e6-4f1a-8fd6-cddc46f129a2n@googlegroups.com/" rel=3D"noreferrer" target=3D=
"_blank">https://gnusha.org/pi/bitcoindev/d1e7183c-30e6-4f1a-8fd6-cddc46f12=
9a2n@googlegroups.com/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [4]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/84309c3f-e848-d333...@netpurgatory.com/" rel=3D"noreferrer" tar=
get=3D"_blank">https://gnusha.org/pi/bitcoindev/84309c3f-e848-d333...@netpu=
rgatory.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/84309c3f-e=
848-d333-fd28-bdd55899b713@netpurgatory.com/" rel=3D"noreferrer" target=3D"=
_blank">https://gnusha.org/pi/bitcoindev/84309c3f-e848-d333-fd28-bdd55899b7=
13@netpurgatory.com/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [5]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/4c1462b7-ea1c-4a36...@googlegroups.com/" rel=3D"noreferrer" tar=
get=3D"_blank">https://gnusha.org/pi/bitcoindev/4c1462b7-ea1c-4a36...@googl=
egroups.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/4c1462b7-e=
a1c-4a36-be81-7c3719157fabn@googlegroups.com/" rel=3D"noreferrer" target=3D=
"_blank">https://gnusha.org/pi/bitcoindev/4c1462b7-ea1c-4a36-be81-7c3719157=
fabn@googlegroups.com/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [6]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/a116fba3-5948-48d2...@googlegroups.com/" rel=3D"noreferrer" tar=
get=3D"_blank">https://gnusha.org/pi/bitcoindev/a116fba3-5948-48d2...@googl=
egroups.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/a116fba3-5=
948-48d2-a787-639a3564d006n@googlegroups.com/" rel=3D"noreferrer" target=3D=
"_blank">https://gnusha.org/pi/bitcoindev/a116fba3-5948-48d2-a787-639a3564d=
006n@googlegroups.com/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [7]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/846b668f-8386-4869...@googlegroups.com/" rel=3D"noreferrer" tar=
get=3D"_blank">https://gnusha.org/pi/bitcoindev/846b668f-8386-4869...@googl=
egroups.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/846b668f-8=
386-4869-a3b1-55d346efbea1n@googlegroups.com/" rel=3D"noreferrer" target=3D=
"_blank">https://gnusha.org/pi/bitcoindev/846b668f-8386-4869-a3b1-55d346efb=
ea1n@googlegroups.com/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [8]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/CALeFGL1-LKPWd7YRS110ut8tX=3DwruqgLEazRA5...@mail.gmail.com/" r=
el=3D"noreferrer" target=3D"_blank">https://gnusha.org/pi/bitcoindev/CALeFG=
L1-LKPWd7YRS110ut8tX=3DwruqgLEazRA5...@mail.gmail.com/</a> &lt;<a href=3D"h=
ttps://gnusha.org/pi/bitcoindev/CALeFGL1-LKPWd7YRS110ut8tX=3DwruqgLEazRA5nV=
w9siYCPj4A@mail.gmail.com/" rel=3D"noreferrer" target=3D"_blank">https://gn=
usha.org/pi/bitcoindev/CALeFGL1-LKPWd7YRS110ut8tX=3DwruqgLEazRA5nVw9siYCPj4=
A@mail.gmail.com/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [9] <a href=3D"https://gnusha.or=
g/pi/bitcoindev/ZgePPvbf...@petertodd.org/" rel=3D"noreferrer" target=3D"_b=
lank">https://gnusha.org/pi/bitcoindev/ZgePPvbf...@petertodd.org/</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 &lt;<a href=3D"https://gnusha.or=
g/pi/bitcoindev/ZgePPvbfrr4wZG7k@petertodd.org/" rel=3D"noreferrer" target=
=3D"_blank">https://gnusha.org/pi/bitcoindev/ZgePPvbfrr4wZG7k@petertodd.org=
/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [10]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/f9435999-42df-46b5...@mattcorallo.com/" rel=3D"noreferrer" targ=
et=3D"_blank">https://gnusha.org/pi/bitcoindev/f9435999-42df-46b5...@mattco=
rallo.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/f9435999-42d=
f-46b5-86e2-7ba0336a9bf2@mattcorallo.com/" rel=3D"noreferrer" target=3D"_bl=
ank">https://gnusha.org/pi/bitcoindev/f9435999-42df-46b5-86e2-7ba0336a9bf2@=
mattcorallo.com/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [11] <a href=3D"https://gnusha.o=
rg/pi/bitcoindev/ZgWRu32FXzqqg69V@console/" rel=3D"noreferrer" target=3D"_b=
lank">https://gnusha.org/pi/bitcoindev/ZgWRu32FXzqqg69V@console/</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 &lt;<a href=3D"https://gnusha.or=
g/pi/bitcoindev/ZgWRu32FXzqqg69V@console/" rel=3D"noreferrer" target=3D"_bl=
ank">https://gnusha.org/pi/bitcoindev/ZgWRu32FXzqqg69V@console/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [12]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/CALZpt+E8DohYEJ9aO+FiF6+E...@mail.gmail.com/" rel=3D"noreferrer=
" target=3D"_blank">https://gnusha.org/pi/bitcoindev/CALZpt+E8DohYEJ9aO+FiF=
6+E...@mail.gmail.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/=
CALZpt+E8DohYEJ9aO+FiF6+EKMCP5oEbHSKSXpq0VKVBhJLhrw@mail.gmail.com/" rel=3D=
"noreferrer" target=3D"_blank">https://gnusha.org/pi/bitcoindev/CALZpt+E8Do=
hYEJ9aO+FiF6+EKMCP5oEbHSKSXpq0VKVBhJLhrw@mail.gmail.com/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [13]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/53a0015c-b76a-441a...@murch.one/" rel=3D"noreferrer" target=3D"=
_blank">https://gnusha.org/pi/bitcoindev/53a0015c-b76a-441a...@murch.one/</=
a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/53a0015c-b76a-441a-920b-=
32bd88d5e778@murch.one/" rel=3D"noreferrer" target=3D"_blank">https://gnush=
a.org/pi/bitcoindev/53a0015c-b76a-441a-920b-32bd88d5e778@murch.one/</a>&gt;=
<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [14]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/ae482890-bce3-468f...@achow101.com/" rel=3D"noreferrer" target=
=3D"_blank">https://gnusha.org/pi/bitcoindev/ae482890-bce3-468f...@achow101=
.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/ae482890-bce3-468=
f-866d-c555b80b0644@achow101.com/" rel=3D"noreferrer" target=3D"_blank">htt=
ps://gnusha.org/pi/bitcoindev/ae482890-bce3-468f-866d-c555b80b0644@achow101=
.com/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [15]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/ppBS1tfMU3SFX85kmIBVBd0WpT5Wof_oSBXsuizh7692AUDw2TojfvCqvcvlmsy=
9E69qfWMxK-UZWawf8IDApPqF7bXOH4gwU1c2jS4xojo=3D@protonmail.com/" rel=3D"nor=
eferrer" target=3D"_blank">https://gnusha.org/pi/bitcoindev/ppBS1tfMU3SFX85=
kmIBVBd0WpT5Wof_oSBXsuizh7692AUDw2TojfvCqvcvlmsy9E69qfWMxK-UZWawf8IDApPqF7b=
XOH4gwU1c2jS4xojo=3D@protonmail.com/</a> &lt;<a href=3D"https://gnusha.org/=
pi/bitcoindev/ppBS1tfMU3SFX85kmIBVBd0WpT5Wof_oSBXsuizh7692AUDw2TojfvCqvcvlm=
sy9E69qfWMxK-UZWawf8IDApPqF7bXOH4gwU1c2jS4xojo=3D@protonmail.com/" rel=3D"n=
oreferrer" target=3D"_blank">https://gnusha.org/pi/bitcoindev/ppBS1tfMU3SFX=
85kmIBVBd0WpT5Wof_oSBXsuizh7692AUDw2TojfvCqvcvlmsy9E69qfWMxK-UZWawf8IDApPqF=
7bXOH4gwU1c2jS4xojo=3D@protonmail.com/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [16]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/ad284018-e99c-4552...@googlegroups.com/" rel=3D"noreferrer" tar=
get=3D"_blank">https://gnusha.org/pi/bitcoindev/ad284018-e99c-4552...@googl=
egroups.com/</a> &lt;<a href=3D"https://gnusha.org/pi/bitcoindev/ad284018-e=
99c-4552-88ca-11b9ed340661n@googlegroups.com/" rel=3D"noreferrer" target=3D=
"_blank">https://gnusha.org/pi/bitcoindev/ad284018-e99c-4552-88ca-11b9ed340=
661n@googlegroups.com/</a>&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 [17]<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"https://gnusha.org/pi=
/bitcoindev/CAMHHROw9mZJRnTbUo76PdqwJU=3D=3DYJMvd9Qrst+...@mail.gmail.com/"=
 rel=3D"noreferrer" target=3D"_blank">https://gnusha.org/pi/bitcoindev/CAMH=
HROw9mZJRnTbUo76PdqwJU=3D=3DYJMvd9Qrst+...@mail.gmail.com/</a> &lt;<a href=
=3D"https://gnusha.org/pi/bitcoindev/CAMHHROw9mZJRnTbUo76PdqwJU=3D=3DYJMvd9=
Qrst+nmyypaedYZgg@mail.gmail.com/" rel=3D"noreferrer" target=3D"_blank">htt=
ps://gnusha.org/pi/bitcoindev/CAMHHROw9mZJRnTbUo76PdqwJU=3D=3DYJMvd9Qrst+nm=
yypaedYZgg@mail.gmail.com/</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 --<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 You received this message because you are subs=
cribed to the Google<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 Groups &quot;Bitcoin Development Mailing List&=
quot; group.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 To unsubscribe from this group and stop receiv=
ing emails from it,<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 send an email to <a href=3D"mailto:bitcoindev%=
2Bunsubscribe@googlegroups.com" target=3D"_blank">bitcoindev+unsubscribe@go=
oglegroups.com</a><br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 &lt;mailto:<a href=3D"mailto:bitcoindev%2Bunsu=
bscribe@googlegroups.com" target=3D"_blank">bitcoindev+unsubscribe@googlegr=
oups.com</a>&gt;.<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 To view this discussion on the web visit<br>
&gt;&gt;=C2=A0 =C2=A0 =C2=A0 <a href=3D"https://groups.google.com/d/msgid/b=
itcoindev/7b4e2223-0b96-4ca0-a441-aebcfc7b0bben%40googlegroups.com" rel=3D"=
noreferrer" target=3D"_blank">https://groups.google.com/d/msgid/bitcoindev/=
7b4e2223-0b96-4ca0-a441-aebcfc7b0bben%40googlegroups.com</a> &lt;<a href=3D=
"https://groups.google.com/d/msgid/bitcoindev/7b4e2223-0b96-4ca0-a441-aebcf=
c7b0bben%40googlegroups.com?utm_medium=3Demail&amp;utm_source=3Dfooter" rel=
=3D"noreferrer" target=3D"_blank">https://groups.google.com/d/msgid/bitcoin=
dev/7b4e2223-0b96-4ca0-a441-aebcfc7b0bben%40googlegroups.com?utm_medium=3De=
mail&amp;utm_source=3Dfooter</a>&gt;.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; Sergi.<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; You received this message because you are subscribed to the Google=
<br>
&gt;&gt; Groups &quot;Bitcoin Development Mailing List&quot; group.<br>
&gt;&gt; To unsubscribe from this group and stop receiving emails from it, =
send<br>
&gt;&gt; an email to <a href=3D"mailto:bitcoindev%2Bunsubscribe@googlegroup=
s.com" target=3D"_blank">bitcoindev+unsubscribe@googlegroups.com</a><br>
&gt;&gt; &lt;mailto:<a href=3D"mailto:bitcoindev%2Bunsubscribe@googlegroups=
.com" target=3D"_blank">bitcoindev+unsubscribe@googlegroups.com</a>&gt;.<br=
>
&gt;&gt; To view this discussion on the web visit<br>
&gt;&gt; <a href=3D"https://groups.google.com/d/msgid/bitcoindev/CAEYHFxV_8=
_Jw61tysL_cV_xiXBcRyA3e%3DCGHGuSCgm%2B-4WxT9w%40mail.gmail.com" rel=3D"nore=
ferrer" target=3D"_blank">https://groups.google.com/d/msgid/bitcoindev/CAEY=
HFxV_8_Jw61tysL_cV_xiXBcRyA3e%3DCGHGuSCgm%2B-4WxT9w%40mail.gmail.com</a> &l=
t;<a href=3D"https://groups.google.com/d/msgid/bitcoindev/CAEYHFxV_8_Jw61ty=
sL_cV_xiXBcRyA3e%3DCGHGuSCgm%2B-4WxT9w%40mail.gmail.com?utm_medium=3Demail&=
amp;utm_source=3Dfooter" rel=3D"noreferrer" target=3D"_blank">https://group=
s.google.com/d/msgid/bitcoindev/CAEYHFxV_8_Jw61tysL_cV_xiXBcRyA3e%3DCGHGuSC=
gm%2B-4WxT9w%40mail.gmail.com?utm_medium=3Demail&amp;utm_source=3Dfooter</a=
>&gt;.<br>
&gt; <br>
&gt; --<br>
&gt; You received this message because you are subscribed to the Google Gro=
ups &quot;Bitcoin Development Mailing List&quot; group.<br>
&gt; To unsubscribe from this group and stop receiving emails from it, send=
 an email to <a href=3D"mailto:bitcoindev%2Bunsubscribe@googlegroups.com" t=
arget=3D"_blank">bitcoindev+unsubscribe@googlegroups.com</a>.<br>
&gt; To view this discussion on the web visit <a href=3D"https://groups.goo=
gle.com/d/msgid/bitcoindev/fb52ccb5-9942-4db8-b880-3c06ebc47cd1%40achow101.=
com" rel=3D"noreferrer" target=3D"_blank">https://groups.google.com/d/msgid=
/bitcoindev/fb52ccb5-9942-4db8-b880-3c06ebc47cd1%40achow101.com</a>.<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/070755a0-10e9-4903-9524-dd8ef98c1c8b%40achow101.com" =
rel=3D"noreferrer" target=3D"_blank">https://groups.google.com/d/msgid/bitc=
oindev/070755a0-10e9-4903-9524-dd8ef98c1c8b%40achow101.com</a>.<br>
</blockquote></div></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/CABu3BAeYqzp439z8Ug6_4QdhvSQ0fCysz-t2h1zzp2pX6Hsebg%4=
0mail.gmail.com?utm_medium=3Demail&utm_source=3Dfooter">https://groups.goog=
le.com/d/msgid/bitcoindev/CABu3BAeYqzp439z8Ug6_4QdhvSQ0fCysz-t2h1zzp2pX6Hse=
bg%40mail.gmail.com</a>.<br />

--00000000000014746406168d4efe--