summaryrefslogtreecommitdiff
path: root/40/1590f075631b8fe6adfaf9e6375f9cd413d840
blob: b16c4ecfca2ccd893da85769fba8ba54eebf70dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
Return-Path: <rsomsen@gmail.com>
Received: from smtp4.osuosl.org (smtp4.osuosl.org [140.211.166.137])
 by lists.linuxfoundation.org (Postfix) with ESMTP id A8051C002D
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Fri, 30 Sep 2022 00:14:08 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
 by smtp4.osuosl.org (Postfix) with ESMTP id 6448F41C06
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Fri, 30 Sep 2022 00:14:08 +0000 (UTC)
DKIM-Filter: OpenDKIM Filter v2.11.0 smtp4.osuosl.org 6448F41C06
Authentication-Results: smtp4.osuosl.org;
 dkim=pass (2048-bit key) header.d=gmail.com header.i=@gmail.com
 header.a=rsa-sha256 header.s=20210112 header.b=eqsrR9bj
X-Virus-Scanned: amavisd-new at osuosl.org
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 tagged_above=-999 required=5
 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
 DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001,
 HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001,
 SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from smtp4.osuosl.org ([127.0.0.1])
 by localhost (smtp4.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id rO0aNB72pGs8
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Fri, 30 Sep 2022 00:14:04 +0000 (UTC)
X-Greylist: whitelisted by SQLgrey-1.8.0
DKIM-Filter: OpenDKIM Filter v2.11.0 smtp4.osuosl.org AD3A641BE7
Received: from mail-oa1-x32.google.com (mail-oa1-x32.google.com
 [IPv6:2001:4860:4864:20::32])
 by smtp4.osuosl.org (Postfix) with ESMTPS id AD3A641BE7
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Fri, 30 Sep 2022 00:14:03 +0000 (UTC)
Received: by mail-oa1-x32.google.com with SMTP id
 586e51a60fabf-131f1494dc2so797776fac.7
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Thu, 29 Sep 2022 17:14:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112;
 h=cc:to:subject:message-id:date:from:in-reply-to:references
 :mime-version:from:to:cc:subject:date;
 bh=MiMwNvjlsUKonwuHlIKVcIzhm2rWj0OV3XOLEAyFHWU=;
 b=eqsrR9bjrQu4AtEcVoajNEE6Z7L1FUbfUCEUtbSyB9s+So8wM2fWUr48yO7umRbCJq
 J4qFAFQzrL7DBBrRDDxTMAlZ/pe5FyTDZWKg7KJqHkLHaWJH5UCNIEwlWVdzjrJHdfgp
 u+Cdtj4DdgrYrNpRrPas87WYjPYNmdp7LbzS+ej/fDOkOiFq3xlF6USVdE9heWsUKElz
 r4Zh5G3x+eZehUgYVkKAGlda7IF2L9KI/FKXDFzH3NmxFs+DHfK/sJ6a0N/L1nCJlxuD
 qZc9+j40ZeX4pRcj6PJKciy2oeRbpef1LLx6RGUD1BzWOq6sHLDuZzapbaqBcsv+AnCV
 2udA==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20210112;
 h=cc:to:subject:message-id:date:from:in-reply-to:references
 :mime-version:x-gm-message-state:from:to:cc:subject:date;
 bh=MiMwNvjlsUKonwuHlIKVcIzhm2rWj0OV3XOLEAyFHWU=;
 b=PPkCMoDMHjqnTdPSXUamBRM79PL+69kuDp3U1AjFEr+lJHEBJ1+h0rvuGEUBV+pkPm
 GHcZG1M/kSU7yKMRYudfdJVuFlyv48XCMZcuAXJO2CgESx27HVk/EMJHDfyoKbgEzrDy
 WmPUiQTyO09jfVppV0DWtcEjC4YmoMsSv8L68yKfnOcrs8ox1ZUyjvVUjglylY7QWZk1
 2IjKeWdwi9T47Gka9ct9Umqp2kJJvq3PX46sjiVOY7VTkVo40AYVHbvrI0QlOxcz13gb
 lKjYTRNXKXWj+tWDOirVlPgMTjm8o9PZ70suhA3TOFn2hFCPU+7tIYNlADVAI/p1rgs4
 Ob1Q==
X-Gm-Message-State: ACrzQf3quSUbVIhIsMc4+UqnNmTL4A5jze1Gw2db76DhNfv9YUPQVdnJ
 tWNO99rt4IfoKrbruO9jdUGZsVY13W+eUteyYnQ=
X-Google-Smtp-Source: AMsMyM4k/xc4YAVVGB7mDr1LexYRXyBca+YLT3PzVfmuIfOmdUiXkw/iPcrXVXH88eQ8Q6lEXwNGZGnfcYQnAewcaxE=
X-Received: by 2002:a05:6870:c0c9:b0:127:c4df:5b50 with SMTP id
 e9-20020a056870c0c900b00127c4df5b50mr3394148oad.126.1664496842491; Thu, 29
 Sep 2022 17:14:02 -0700 (PDT)
MIME-Version: 1.0
References: <CAFXO6=KDys2_dsrdxE9_q_MVZJOFMbg-MctxiokcicP=wd4Lkw@mail.gmail.com>
 <CALZpt+HYUti=foo+d5ER7Wj=PxsfgaU2CEqqG4_KRxmsWoaSxw@mail.gmail.com>
 <CACdvm3PyP9yrxx_Yewtx_yQh=i2uwGYj-wtY7HBER1bmG46NEw@mail.gmail.com>
 <CAB3F3Du=+YYKbfgB5LZPnCg40=5YCn_0tkpJ4LO9bMK0U-3wXg@mail.gmail.com>
 <CAFXO6=JGBPVpxTJnSMWCCZVPHZW_RyWQ2Cv18Ao_F=uQx3LVkg@mail.gmail.com>
 <CACdvm3OUpODbMzkcG+=qYzR9myrvSp-LpuGmETow94JavU2GDw@mail.gmail.com>
 <CAB3F3DvCw9Ms+HUMaFnqV0P-Oo+rfERY+j5S5CC_X2NKRd5u8g@mail.gmail.com>
In-Reply-To: <CAB3F3DvCw9Ms+HUMaFnqV0P-Oo+rfERY+j5S5CC_X2NKRd5u8g@mail.gmail.com>
From: Ruben Somsen <rsomsen@gmail.com>
Date: Fri, 30 Sep 2022 02:13:53 +0200
Message-ID: <CAPv7TjYM34qk5bGheMZhopotuCwxYyHmWAXcawA5UHQpQWiGCg@mail.gmail.com>
To: Bastien TEINTURIER <bastien@acinq.fr>
Content-Type: multipart/alternative; boundary="00000000000006cc9d05e9d9df97"
X-Mailman-Approved-At: Fri, 30 Sep 2022 00:14:20 +0000
Cc: Bitcoin Protocol Discussion <bitcoin-dev@lists.linuxfoundation.org>,
 Greg Sanders <gsanders87@gmail.com>
Subject: Re: [bitcoin-dev] New transaction policies (nVersion=3) for
 contracting protocols
X-BeenThere: bitcoin-dev@lists.linuxfoundation.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: Bitcoin Protocol Discussion <bitcoin-dev.lists.linuxfoundation.org>
List-Unsubscribe: <https://lists.linuxfoundation.org/mailman/options/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=unsubscribe>
List-Archive: <http://lists.linuxfoundation.org/pipermail/bitcoin-dev/>
List-Post: <mailto:bitcoin-dev@lists.linuxfoundation.org>
List-Help: <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=help>
List-Subscribe: <https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=subscribe>
X-List-Received-Date: Fri, 30 Sep 2022 00:14:08 -0000

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

Hi Bastien,

>The other change mentioned (making OP_TRUE standard and allowing outputs
that are below dust) can be added later, as those won't be standard until
we start allowing them, so there shouldn't be any backwards-compatibility
issue with postponing this change. But maybe it's still worth having from
the get-go, even though it may take a bit more time? Again, I'm curious to
have other people's opinion here

I'm sensitive to not wanting to overload the current discussion but this
also interests me, provided it can be done in a way that is acceptable
(i.e. minimizing the potential UTXO set impact). It would solve a big cost
issue in my spacechains design if transactions could be 0 fees and have a 0
sat output that could be used in order to pay all the fees with CPFP.

My current view is that a tx containing a single 0 sat OP_TRUE output
should only get relayed if it is a package where the OP_TRUE output is
currently being spent in a way that increases the overall fee rate. But
even then, one theoretical edge case remains:
- Another CPFP tx can feebump the package on a different (non-OP_TRUE)
output with an even higher fee rate
- Subsequently, the tx that is spending the OP_TRUE might fall out of the
mempool if the mempool fee rate rises
- This could cause the 0 sat output to enter the UTXO set (specifically,
rational miners wouldn't refuse to mine such a tx)

It doesn't seem like this would happen much in practice (nor is there an
incentive to do it on purpose), but the chance isn't 0.

Cheers,
Ruben



On Thu, Sep 29, 2022 at 4:50 PM Greg Sanders via bitcoin-dev <
bitcoin-dev@lists.linuxfoundation.org> wrote:

> > Right, good catch, this does require new logic to handle this case.
> As Gloria points out, this should be doable, and is definitely worth
> adding (those CSV 1 on every other output are really hacky, glad to
> find a way to get rid of them).
>
> For the record, it turns out ephemeral anchors + v3 solves this already,
> as the anchor must be spent, and the parent tx may only have one child.
> Somehow I missed this implication for a few months. It's great news if we
> can directly source fees from any output claimable, including HTLCs!
>
> On Thu, Sep 29, 2022 at 5:15 AM Bastien TEINTURIER <bastien@acinq.fr>
> wrote:
>
>> Hi Gloria, Greg,
>>
>> > I interpret most of the discussion around limitations as ideas for
>> > future improvements rather than criticisms of the proposal
>>
>> As far as I'm concerned, definitely!
>>
>> My current understanding is that the main change/improvement that would
>> make sense here is restricting the whole v3 package's size (instead of
>> just the child) via committing to a specific value in the taproot annex
>> (also note that it's probably not just the v3 package's size, it should
>> be the whole unconfirmed package including potential v2 unconfirmed
>> ancestors).
>>
>> While I think this would be very valuable and would like to see this
>> happen, I believe that can be done in a second, separate step since this
>> would make relay policy stricter (some v3 transactions that previously
>> propagated wouldn't propagate under this new rule). As long as you are
>> able to find a path to miners through upgraded peers that use this annex
>> approach, you should be able to resolve ACP pinning issues?
>>
>> I'm curious to know how other people feel about that: is it ok to do
>> later or should we try to implement this for the first release of v3
>> transactions?
>>
>> The other change mentioned (making OP_TRUE standard and allowing outputs
>> that are below dust) can be added later, as those won't be standard unti=
l
>> we start allowing them, so there shouldn't be any backwards-compatibilit=
y
>> issue with postponing this change. But maybe it's still worth having fro=
m
>> the get-go, even though it may take a bit more time? Again, I'm curious =
to
>> have other people's opinion here, I'd be happy to get all of those
>> directly
>> in the first release of v3 transactions, but I don't know how much
>> implementation will have to go into that.
>>
>> > For clarification, package RBF is ParentTx*s*(plural), and
>> ChildTx(singular),
>> > so it might be a bit more complicated than we're thinking
>>
>> Right, good catch, this does require new logic to handle this case.
>> As Gloria points out, this should be doable, and is definitely worth
>> adding (those CSV 1 on every other output are really hacky, glad to
>> find a way to get rid of them).
>>
>> Thanks,
>> Bastien
>>
>> Le lun. 26 sept. 2022 =C3=A0 18:48, Gloria Zhao <gloriajzhao@gmail.com> =
a
>> =C3=A9crit :
>>
>>> Hi Greg, Antoine, Bastien,
>>>
>>> Thanks very much for the feedback! I interpret most of the discussion
>>> around limitations as ideas for future improvements rather than critici=
sms
>>> of the proposal (please correct me if I'm wrong). I'll try to respond t=
o as
>>> much as possible.
>>>
>>> Also I realize that I didn't contextualize this proposal clearly enough=
;
>>> it is very tailored for LN Penalty and definitely doesn't close all pin=
ning
>>> attacks possible (sorry for confusing anyone). I also agree that some b=
its
>>> can be a little ugly or tack-on; I would definitely prefer a comprehens=
ive
>>> RBF revamp to fix all our problems and enable other fee-bumping strateg=
ies
>>> such as
>>> sign-ANYONECANPAY-then-bring-your-own-fees-by-adding-inputs-at-broadcas=
t. I
>>> was hoping to get some ideas with the "RBF Improvements" post in Januar=
y,
>>> but it doesn't seem like we're much closer to a workable proposal. I th=
ink
>>> this is a minimally-invasive step that works for Lightning today, a sma=
ll
>>> fix similar to CPFP carve out.
>>>
>>> > As you likely know from previous discussions the biggest scenario thi=
s
>>> does not fix in my estimation is ANYONECANPAY situations. If the parent
>>> transaction can be "inflated" by tacking on additional inputs, this mea=
ns
>>> the total weight of the parent tx lowers the effective feerate of the
>>> package.
>>>
>>> (For more context to other readers I wrote an explanation for this in
>>> "SIGHASH_ANYONECANPAY Pinning" section of RBF ML post).  Yes, this
>>> unfortunately doesn't fix any of the existing pinning attacks for singl=
e
>>> transaction RBF but also doesn't make them worse. This boils down to ad=
ding
>>> an incentive compatibility rule that ensures you can't replace a
>>> transaction with something that will confirm slower. Package RBF has an
>>> ancestor feerate-based rule for this (note it is quite conservative and=
 not
>>> perfect).
>>>
>>> So in the scenario above with the "inflated" parent that was signed ACP=
,
>>> the replacement would be rejected because the package ancestor feerate =
is
>>> lower than the feerate of what is being replaced. But it is imperfect
>>> (explained below) and thus I wouldn't recommend it for single transacti=
on
>>> replacement. So that attack still exists for single transactions, yes.
>>>
>>> The strategy of using ACP to bring-your-own-fees has its own challenges
>>> but hopefully has no current use cases as you say. AFAIK LN Penalty is =
not
>>> affected by this since it doesn't use ACP, though obviously I agree we
>>> should fix it for the future.
>>>
>>> So when I said "this is intended for fee-bumping presigned txns in
>>> contracting protocols," I should have said "this is intended for
>>> fee-bumping presigned txns specifically using CPFP and anchor outputs."
>>> Apologies for forgetting to contextualize, I've been sitting on this fo=
r
>>> too long.
>>>
>>> > The other scenario it doesn't really fix is where HTLC/commitment-lik=
e
>>> transactions are being resolved in a batch, but due to relative time
>>> constraints, you may want to accelerate some and not others. Now you mu=
st
>>> pay higher rates to replace all of the transaction bumps. This is a
>>> "self-pin" and "get good at utxos noob" type problem, but it's somethin=
g
>>> that axing rule#3 in favor of a Replace-by-ancestor-feerate system woul=
d
>>> get us.
>>>
>>> I understand you to mean "if you don't have enough UTXOs and you're
>>> forced to batch-bump, you over-pay because you need to bring them all t=
o
>>> the highest target feerate." Isn't this kind of separate, wallet-relate=
d
>>> problem? Contracting or not, surely every wallet needs to have enough U=
TXOs
>>> to not batch transactions that shouldn't be batched... I don't see how =
a
>>> replace-by-ancestor-feerate policy would make any difference for this?
>>>
>>> Also in general I'd like to reiterate that ancestor feerate is not a
>>> panacea to all our RBF incentive compatibility concerns. Like individua=
l
>>> feerate, unless we run the mining algorithm, it cannot tell us exactly =
how
>>> quickly this transaction would be mined.
>>>
>>> We're estimating the incentive compatibility of the original
>>> transaction(s) and replacement transaction(s), with the goal of not let=
ting
>>> a transaction replace something that would have been more incentive
>>> compatible to mine. As such, we don't want to overestimate how good the
>>> replacement is, and we don't want to underestimate how good the origina=
l
>>> transactions are. This rule "The minimum between package feerate and
>>> ancestor feerate of the child is not lower than the individual feerates=
 of
>>> all directly conflicting transactions and the ancestor feerates of all
>>> original transactions" is a conservative estimate.
>>>
>>> > Would kind of be nice if package RBF would detect a "sibling output
>>> spend" conflict, and knock it out of the mempool via the other replacem=
ent
>>> rules? Getting rid of the requirement to 1 block csv lock every output
>>> would be quite nice from a smart contracting composability point of vie=
w.
>>>
>>> Interesting, so when a transaction hits a mempool tx's descendant limit=
,
>>> we consider evicting one of its descendants in favor of this transactio=
n,
>>> based on the RBF rules.
>>> Cool idea! After chewing on this for a bit, I think this *also* just
>>> boils down to the fact that RBF should require replacements to be bette=
r
>>> mining candidates. As in, if we added this policy and it can make us ev=
ict
>>> the sibling and accept a transaction with a bunch of low-feerate ancest=
or
>>> junk, it would be a new pinning vector.
>>>
>>> > If you're a miner and you receive a non-V3, second descendant of an
>>> unconfirmed V3 transaction, if the offered fee is in the top mempool
>>> backlog, I think you would have an interest to accept such a transactio=
n.
>>>
>>> > So I'm not sure if those two rules are compatible with miners
>>> incentives...
>>>
>>> The same argument can be made for the 26th descendant of a mempool
>>> transaction; it's also not entirely incentive-compatible to reject it, =
but
>>> that is not the *only* design goal in mempool policy. Of course, the
>>> difference here is that the 25-descendant limit rule is a sensible DoS
>>> protection, while this 1-descendant limit rule is more of a "help the
>>> Bitcoin ecosystem" policy, just like CPFP carve-out, dust limit, etc. I=
 can
>>> of course understand why not everyone would be in favor of this, but I =
do
>>> think it's worth it.
>>>
>>> > > 4. A V3 transaction that has an unconfirmed V3 ancestor cannot be
>>> > >    larger than 1000 virtual bytes.
>>>
>>> > If I understand correctly the 1000 vb upper bound rational, it would
>>> be to constraint the pinning counterparty to attach a high fee to a chi=
ld
>>> due to the limited size, if they would like this transaction to be stuc=
k in
>>> the network mempools. By doing so  this child has high odds to confirm.
>>>
>>> Yeah exactly, the "Rule 3 pin" is done by adding a child that's high-fe=
e
>>> (so you have to pay that much to evict it). Because they *don't* want t=
his
>>> tx to confirm, normally, this child would be really large. If they only
>>> have 1000vB for the child, they can't increase the replacement cost wit=
hout
>>> also fee-bumping the transaction to make it confirm faster.
>>>
>>> > As of today, I think yes you can already fingerprint LN transactions
>>> on the  spec-defined amount value of the anchor outputs, 330 sats. Ther=
e is
>>> always one of them on post-anchor commitment transactions. And sadly I
>>> would say we'll always have tricky fingerprints leaking from unilateral=
 LN
>>> closures such as HTLC/PTLC timelocks...
>>>
>>> > I agree with you, this isn't worse than today, unilateral closes will
>>> probably always be identifiable on-chain.
>>>
>>> Great to hear that there is no privacy worsening!
>>>
>>> Best,
>>> Gloria
>>>
>>> On Mon, Sep 26, 2022 at 5:02 PM Greg Sanders <gsanders87@gmail.com>
>>> wrote:
>>>
>>>> Bastien,
>>>>
>>>> > This may be already covered by the current package RBF logic, in tha=
t
>>>> scenario we are simply replacing [ParentTx, ChildTx1] with
>>>> [ParentTx, ChildTx2] that pays more fees, right?
>>>>
>>>> For clarification, package RBF is ParentTx*s*(plural), and
>>>> ChildTx(singular), so it might be a bit more complicated than we're
>>>> thinking, and currently the V3 proposal would first de-duplicate the
>>>> ParentTx based on what is in the mempool, then look at the "rest" of t=
he
>>>> transactions as a package, then individually. Not the same, not sure h=
ow
>>>> different. I'll defer to experts.
>>>>
>>>> Best,
>>>> Greg
>>>>
>>>> On Mon, Sep 26, 2022 at 11:48 AM Bastien TEINTURIER via bitcoin-dev <
>>>> bitcoin-dev@lists.linuxfoundation.org> wrote:
>>>>
>>>>> Thanks Gloria for this great post.
>>>>>
>>>>> This is very valuable work for L2 contracts, and will greatly improve
>>>>> their security model.
>>>>>
>>>>> > "Only 1 anchor output? What if I need to bump counterparty's
>>>>> commitment tx in mempool?"
>>>>> > You won't need to fee-bump a counterparty's commitment tx using CPF=
P.
>>>>> > You would just package RBF it by attaching a high-feerate child to
>>>>> > your commitment tx.
>>>>>
>>>>> Note that we can also very easily make that single anchor spendable b=
y
>>>>> both participants (or even anyone), so if you see your counterparty's
>>>>> commitment in your mempool, you can bump it without publishing your
>>>>> own commitment, which is quite desirable (your own commitment tx has
>>>>> CSV delays on your outputs, whereas your counterparty's commitment tx
>>>>> doesn't).
>>>>>
>>>>> > "Is this a privacy issue, i.e. doesn't it allow fingerprinting LN
>>>>> transactions based on nVersion?"
>>>>>
>>>>> I agree with you, this isn't worse than today, unilateral closes will
>>>>> probably always be identifiable on-chain.
>>>>>
>>>>> > Would kind of be nice if package RBF would detect a "sibling output
>>>>> spend"
>>>>> > conflict, and knock it out of the mempool via the other replacement
>>>>> rules?
>>>>> > Getting rid of the requirement to 1 block csv lock every output
>>>>> would be
>>>>> > quite nice from a smart contracting composability point of view.
>>>>>
>>>>> +1, that would be very neat!
>>>>>
>>>>> This may be already covered by the current package RBF logic, in that
>>>>> scenario we are simply replacing [ParentTx, ChildTx1] with
>>>>> [ParentTx, ChildTx2] that pays more fees, right?
>>>>>
>>>>> > 1) I do think that we should seriously consider allowing OP_TRUE to
>>>>> become
>>>>> > a standard script type as part of this policy update. If pinning is
>>>>> solved,
>>>>> > then there's no reason to require all those extra bytes for
>>>>> "binding" an
>>>>> > anchor to a specific wallet/user. We can save quite a few bytes by
>>>>> having
>>>>> > the input be empty of witness data.
>>>>> > 2) If we allow for a single dust-value(0 on up) output which is
>>>>> immediately
>>>>> > spent by the package, anchors become even easier to to design. No
>>>>> value has
>>>>> > to be "sapped" from contract participants to make an anchor output.
>>>>> There's
>>>>> > more complications for this, such as making sure the parent
>>>>> transaction is
>>>>> > dropped if the child spend is dropped, but maybe it's worth the
>>>>> squeeze.
>>>>>
>>>>> I also think both of these could be quite useful. This would probably
>>>>> always
>>>>> be used in combination with a parent transaction that pays 0 fees, so
>>>>> the
>>>>> 0-value output would always be spent in the same block.
>>>>>
>>>>> But this means we could end up with 0-value outputs in the utxo set,
>>>>> if for
>>>>> some reason the parent tx is CPFP-ed via another output than the
>>>>> 0-value one,
>>>>> which would be a utxo set bloat issue. But I'd argue that we're
>>>>> probably
>>>>> already creating utxo set bloat with the 330 sat anchor outputs
>>>>> (especially
>>>>> since we use two of them, but only one is usually spent), so it would
>>>>> probably be *better* than what we're doing today.
>>>>>
>>>>> Thanks,
>>>>> Bastien
>>>>>
>>>>> Le lun. 26 sept. 2022 =C3=A0 03:22, Antoine Riard via bitcoin-dev <
>>>>> bitcoin-dev@lists.linuxfoundation.org> a =C3=A9crit :
>>>>>
>>>>>> Hi Gloria,
>>>>>>
>>>>>> Thanks for the progress on package RBF, few early questions.
>>>>>>
>>>>>> > 2. Any descendant of an unconfirmed V3 transaction must also be V3=
.
>>>>>>
>>>>>> > 3. An unconfirmed V3 transaction cannot have more than 1 descendan=
t.
>>>>>>
>>>>>> If you're a miner and you receive a non-V3, second descendant of an
>>>>>> unconfirmed V3 transaction, if the offered fee is in the top mempool
>>>>>> backlog, I think you would have an interest to accept such a transac=
tion.
>>>>>>
>>>>>> So I'm not sure if those two rules are compatible with miners
>>>>>> incentives...
>>>>>>
>>>>>> > 4. A V3 transaction that has an unconfirmed V3 ancestor cannot be
>>>>>> >    larger than 1000 virtual bytes.
>>>>>>
>>>>>> If I understand correctly the 1000 vb upper bound rational, it would
>>>>>> be to constraint the pinning counterparty to attach a high fee to a =
child
>>>>>> due to the limited size, if they would like this transaction to be s=
tuck in
>>>>>> the network mempools. By doing so  this child has high odds to confi=
rm.
>>>>>>
>>>>>> I still wonder if this compatible with miner incentives in period of
>>>>>> empty mempools, in the sense that if you've already a V3 transaction=
 of
>>>>>> size 100Kvb offering 2 sat/vb, it's more interesting than a V3 repla=
cement
>>>>>> candidate of size 1000 vb offering 10 sat/vb. It could be argued the=
 former
>>>>>> should be conserved.
>>>>>>
>>>>>> (That said, the hard thing with any replacement strategy we might
>>>>>> evict a parent transaction *now* to which is attached a high-feerate=
 child
>>>>>> *latter* making for a utxo considered the best ancestor set. Maybe i=
n the
>>>>>> long-term miners should keep every transaction ever accepted...)
>>>>>>
>>>>>> > (Lower bound) the smaller this limit, the fewer UTXOs a child may
>>>>>> use
>>>>>> > to fund this fee-bump. For example, only allowing the V3 child to
>>>>>> have
>>>>>> > 2 inputs would require L2 protocols to manage a wallet with
>>>>>> high-value
>>>>>> > UTXOs and make batched fee-bumping impossible. However, as the
>>>>>> > fee-bumping child only needs to fund fees (as opposed to payments)=
,
>>>>>> > just a few UTXOs should suffice.
>>>>>>
>>>>>> Reminder for L2 devs, batched fee-bumping of time-sensitive
>>>>>> confirmations of commitment transactions is unsafe, as the counterpa=
rty
>>>>>> could enter in a "cat-and-mouse" game to replace one of the batch el=
ement
>>>>>> at each block to delay confirmation of the remaining elements in the=
 batch,
>>>>>> I think.
>>>>>>
>>>>>> On the other hand, I wonder if we wouldn't want a higher bound. LN
>>>>>> wallets are likely to have one big UTXO in their fee-bumping reserve=
 pool,
>>>>>> as the cost of acquiring UTXO is non-null and in the optimistic case=
, you
>>>>>> don't need to do unilateral closure. Let's say you close dozens of c=
hannels
>>>>>> at the same time, a UTXO pool management strategy might be to fan-ou=
t the
>>>>>> first spends UTXOs in N fan-out outputs ready to feed the remaining
>>>>>> in-flight channels.
>>>>>>
>>>>>> > 1. The rule around unconfirmed inputs was
>>>>>> > originally "A package may include new unconfirmed inputs, but the
>>>>>> > ancestor feerate of the child must be at least as high as the
>>>>>> ancestor
>>>>>> > feerates of every transaction being replaced."
>>>>>>
>>>>>> Note, I think we would like this new RBF rule to also apply to singl=
e
>>>>>> transaction package, e.g second-stage HTLC transactions, where a
>>>>>> counterparty pins a HTLC-preimage by abusing rule 3. In that case, t=
he
>>>>>> honest LN node should be able to broadcast a "at least as high ances=
tor
>>>>>> feerate" HTLC-timeout transaction. With `option_anchor_outputs" ther=
e is no
>>>>>> unconfirmed ancestor to replace, as the commitment transaction, what=
ever
>>>>>> the party it is originating from, should already be confirmed.
>>>>>>
>>>>>> > "Is this a privacy issue, i.e. doesn't it allow fingerprinting LN
>>>>>> transactions based on nVersion?"
>>>>>>
>>>>>> As of today, I think yes you can already fingerprint LN transactions
>>>>>> on the  spec-defined amount value of the anchor outputs, 330 sats. T=
here is
>>>>>> always one of them on post-anchor commitment transactions. And sadly=
 I
>>>>>> would say we'll always have tricky fingerprints leaking from unilate=
ral LN
>>>>>> closures such as HTLC/PTLC timelocks...
>>>>>>
>>>>>> > "Can a V2 transaction replace a V3 transaction and vice versa?"
>>>>>>
>>>>>> IIUC, a V3 package could replace a V2 package, with the benefit of
>>>>>> the new package RBF rules applied. I think this would be a significa=
nt
>>>>>> advantage for LN, as for the current ~85k of opened channels, the ol=
d V2
>>>>>> states shouldn't be pinning vectors. Currently, commitment transacti=
ons
>>>>>> signal replaceability.
>>>>>>
>>>>>> Le ven. 23 sept. 2022 =C3=A0 11:26, Gloria Zhao via bitcoin-dev <
>>>>>> bitcoin-dev@lists.linuxfoundation.org> a =C3=A9crit :
>>>>>>
>>>>>>> Hi everyone,
>>>>>>>
>>>>>>> I'm writing to propose a very simple set of mempool/transaction rel=
ay
>>>>>>> policies intended to aid L2/contract protocols. I realized that
>>>>>>> the previously proposed Package Mempool Accept package RBF [1]
>>>>>>> had a few remaining problems after digging into the RBF logic more
>>>>>>> [2].
>>>>>>> This additional set of policies solves them without requiring a hug=
e
>>>>>>> RBF overhaul.
>>>>>>>
>>>>>>> I've written an implementation (and docs) for Bitcoin Core:
>>>>>>> https://github.com/bitcoin/bitcoin/pull/25038
>>>>>>>
>>>>>>> (You may notice that this proposal incorporates feedback on the PR =
-
>>>>>>> thanks Suhas Daftuar, Gregory Sanders, Bastien Teinturier, Anthony =
Towns,
>>>>>>> and others.)
>>>>>>>
>>>>>>> If you are interested in using package RBF/relay to bump presigned
>>>>>>> transactions, I think you may be interested in reviewing this
>>>>>>> proposal.
>>>>>>> This should solve Rule 3 pinning and perhaps allow us
>>>>>>> to get rid of CPFP carve-out (yay!). I'm keen to hear if people fin=
d
>>>>>>> the 1-anchor-output, 1000vB child limit too restrictive. Also, if
>>>>>>> you find a
>>>>>>> pinning attack or something that makes it unusable for you, I would
>>>>>>> really really like to know.
>>>>>>>
>>>>>>> Note that transactions with nVersion=3D3 ("V3 transactions") are
>>>>>>> currently non-standard in Bitcoin Core. That means **anything that
>>>>>>> was
>>>>>>> standard before this policy change would still be standard
>>>>>>> afterwards.** If you don't want your transactions to be subject to
>>>>>>> these rules, just continue whatever you're doing and don't use
>>>>>>> nVersion=3D3. AFAICT this shouldn't break anything, but let me know=
 if
>>>>>>> this would be disruptive for you?
>>>>>>>
>>>>>>> **New Policies:**
>>>>>>>
>>>>>>> This includes:
>>>>>>> - a set of additional policy rules applying to V3 transactions
>>>>>>> - modifications to package RBF rules
>>>>>>>
>>>>>>> **V3 transactions:**
>>>>>>>
>>>>>>> Existing standardness rules apply to V3 (e.g. min/max tx weight,
>>>>>>> standard output types, cleanstack, etc.). The following additional
>>>>>>> rules apply to V3:
>>>>>>>
>>>>>>> 1. A V3 transaction can be replaced, even if it does not signal
>>>>>>> BIP125
>>>>>>>    replaceability. (It must also meet the other RBF rules around
>>>>>>> fees,
>>>>>>> etc. for replacement to happen).
>>>>>>>
>>>>>>> 2. Any descendant of an unconfirmed V3 transaction must also be V3.
>>>>>>>
>>>>>>> *Rationale*: Combined with Rule 1, this gives us the property of
>>>>>>> "inherited" replaceability signaling when descendants of unconfirme=
d
>>>>>>> transactions are created. Additionally, checking whether a
>>>>>>> transaction
>>>>>>> signals replaceability this way does not require mempool traversal,
>>>>>>> and does not change based on what transactions are mined. It also
>>>>>>> makes subsequent rules about descendant limits much easier to check=
.
>>>>>>>
>>>>>>> *Note*: The descendant of a *confirmed* V3 transaction does not nee=
d
>>>>>>> to be V3.
>>>>>>>
>>>>>>> 3. An unconfirmed V3 transaction cannot have more than 1 descendant=
.
>>>>>>>
>>>>>>> *Rationale*: (Upper bound) the larger the descendant limit, the mor=
e
>>>>>>> transactions may need to be replaced. This is a problematic pinning
>>>>>>> attack, i.e., a malicious counterparty prevents the transaction fro=
m
>>>>>>> being replaced by adding many descendant transactions that aren't
>>>>>>> fee-bumping.
>>>>>>>
>>>>>>> (Lower bound) at least 1 descendant is required to allow CPFP of th=
e
>>>>>>> presigned transaction. The contract protocol can create presigned
>>>>>>> transactions paying 0 fees and 1 output for attaching a CPFP at
>>>>>>> broadcast time ("anchor output"). Without package RBF, multiple
>>>>>>> anchor
>>>>>>> outputs would be required to allow each counterparty to fee-bump an=
y
>>>>>>> presigned transaction. With package RBF, since the presigned
>>>>>>> transactions can replace each other, 1 anchor output is sufficient.
>>>>>>>
>>>>>>> 4. A V3 transaction that has an unconfirmed V3 ancestor cannot be
>>>>>>>    larger than 1000 virtual bytes.
>>>>>>>
>>>>>>> *Rationale*: (Upper bound) the larger the descendant size limit, th=
e
>>>>>>> more vbytes may need to be replaced. With default limits, if the
>>>>>>> child
>>>>>>> is e.g. 100,000vB, that might be an additional 100,000sats (at
>>>>>>> 1sat/vbyte) or more, depending on the feerate.
>>>>>>>
>>>>>>> (Lower bound) the smaller this limit, the fewer UTXOs a child may u=
se
>>>>>>> to fund this fee-bump. For example, only allowing the V3 child to
>>>>>>> have
>>>>>>> 2 inputs would require L2 protocols to manage a wallet with
>>>>>>> high-value
>>>>>>> UTXOs and make batched fee-bumping impossible. However, as the
>>>>>>> fee-bumping child only needs to fund fees (as opposed to payments),
>>>>>>> just a few UTXOs should suffice.
>>>>>>>
>>>>>>> With a limit of 1000 virtual bytes, depending on the output types,
>>>>>>> the
>>>>>>> child can have 6-15 UTXOs, which should be enough to fund a fee-bum=
p
>>>>>>> without requiring a carefully-managed UTXO pool. With 1000 virtual
>>>>>>> bytes as the descendant limit, the cost to replace a V3 transaction
>>>>>>> has much lower variance.
>>>>>>>
>>>>>>> *Rationale*: This makes the rule very easily "tacked on" to existin=
g
>>>>>>> logic for policy and wallets. A transaction may be up to 100KvB on
>>>>>>> its
>>>>>>> own (`MAX_STANDARD_TX_WEIGHT`) and 101KvB with descendants
>>>>>>> (`DEFAULT_DESCENDANT_SIZE_LIMIT_KVB`). If an existing V3 transactio=
n
>>>>>>> in the mempool is 100KvB, its descendant can only be 1000vB, even i=
f
>>>>>>> the policy is 10KvB.
>>>>>>>
>>>>>>> **Package RBF modifications:**
>>>>>>>
>>>>>>> 1. The rule around unconfirmed inputs was
>>>>>>> originally "A package may include new unconfirmed inputs, but the
>>>>>>> ancestor feerate of the child must be at least as high as the
>>>>>>> ancestor
>>>>>>> feerates of every transaction being replaced."
>>>>>>>
>>>>>>> The package may still include new unconfirmed inputs. However,
>>>>>>> the new rule is modified to be "The minimum between package feerate
>>>>>>> and ancestor feerate of the child is not lower than the individual
>>>>>>> feerates of all directly conflicting transactions and the ancestor
>>>>>>> feerates of all original transactions."
>>>>>>>
>>>>>>> *Rationale*: We are attempting to ensure that the replacement
>>>>>>> transactions are not less incentive-compatible to mine. However, a
>>>>>>> package/transaction's ancestor feerate is not perfectly
>>>>>>> representative
>>>>>>> of its incentive compatibility; it may overestimate (some subset of
>>>>>>> the ancestors could be included by itself if it has other
>>>>>>> high-feerate
>>>>>>> descendants or are themselves higher feerate than this
>>>>>>> package/transaction). Instead, we use the minimum between the packa=
ge
>>>>>>> feerate and ancestor feerate of the child as a more conservative
>>>>>>> value
>>>>>>> than what was proposed originally.
>>>>>>>
>>>>>>> 2. A new rule is added, requiring that all package transactions wit=
h
>>>>>>> mempool conflicts to be V3. This also means the "sponsoring"
>>>>>>> child transaction must be V3.
>>>>>>>
>>>>>>> *Note*: Combined with the V3 rules, this means the package must be
>>>>>>> a child-with-parents package. Since package validation is only
>>>>>>> attempted if the transactions do not pay sufficient fees to be
>>>>>>> accepted on their own, this effectively means that only V3
>>>>>>> transactions can pay to replace their ancestors' conflicts, and onl=
y
>>>>>>> V3 transactions' replacements may be paid for by a descendant.
>>>>>>>
>>>>>>> *Rationale*: The fee-related rules are economically rational for
>>>>>>> ancestor packages, but not necessarily other types of packages.
>>>>>>> A child-with-parents package is a type of ancestor package. It
>>>>>>> may be fine to allow any ancestor package, but it's more difficult
>>>>>>> to account for all of the possibilities. For example, it gets much
>>>>>>> harder to see that we're applying the descendant limits correctly i=
f
>>>>>>> the package has a gnarly, many-generation, non-tree shape. I'm also
>>>>>>> not sure if this policy is 100% incentive-compatible if the sponsor
>>>>>>> is not a direct descendant of the sponsee.
>>>>>>>
>>>>>>> Please see doc/policy/version3_transactions.md and
>>>>>>> doc/policy/packages.md in the PR for the full set of rules.
>>>>>>>
>>>>>>> **Intended usage for LN:**
>>>>>>>
>>>>>>> Commitment transactions should be V3 and have 1 anchor output. They
>>>>>>> can be signed with 0 fees (or 1sat/vbyte) once package relay is
>>>>>>> deployed
>>>>>>> on a significant portion of the network. If the commitment tx must
>>>>>>> be broadcast, determine the desired feerate at broadcast time and
>>>>>>> spend the anchor output in a high feerate transaction. I'm going to
>>>>>>> call the broadcasted commitment tx "the parent" and the attached
>>>>>>> fee-bumping tx "the child."
>>>>>>>
>>>>>>> - This child must be V3.
>>>>>>> - This child must be at most 1000vB. Note this restricts the
>>>>>>>   number of inputs you can use to fund the fee bump. Depending
>>>>>>> on the output types, this is around 6-15.
>>>>>>> - One child may fund fees for multiple commitment tx ("batched
>>>>>>>   fee-bumping").
>>>>>>> - To do a second fee-bump to add more fees, replace the
>>>>>>>   *child* with a higher-feerate tx. Do not try to attach a
>>>>>>> grandchild.
>>>>>>>
>>>>>>> Otherwise, never try to spend from an unconfirmed V3 transaction. T=
he
>>>>>>> descendant limits for V3 transactions are very restrictive.
>>>>>>>
>>>>>>> **Expected Questions:**
>>>>>>>
>>>>>>> "Does this fix Rule 3 Pinning?"
>>>>>>> Yes. The V3 descendant limit restricts both you and your
>>>>>>> counterparty.
>>>>>>> Assuming nodes adopted this policy, you may reasonably assume that
>>>>>>> you
>>>>>>> only need to replace the commitment transaction + up to 1000vB.
>>>>>>>
>>>>>>> "Only 1 anchor output? What if I need to bump counterparty's
>>>>>>> commitment tx in mempool?"
>>>>>>> You won't need to fee-bump a counterparty's commitment tx using CPF=
P.
>>>>>>> You would just package RBF it by attaching a high-feerate child to
>>>>>>> your commitment tx.
>>>>>>>
>>>>>>> "Is this a privacy issue, i.e. doesn't it allow fingerprinting LN
>>>>>>> transactions based on nVersion?"
>>>>>>> Indeed it may be unrealistic to assume V3 transactions will be in
>>>>>>> widespread use outside of L2. IIUC, unilateral closes are already
>>>>>>> obvious LN transactions because of the HTLC inputs. For e.g.
>>>>>>> cooperative closes and opens, I think it makes sense to continue
>>>>>>> using
>>>>>>> V2. So, unless I'm missing something, this shouldn't make it worse.
>>>>>>>
>>>>>>> "So a V3 transaction that doesn't signal BIP125 replaceability is
>>>>>>> replaceable? Is that a backward compatibility issue?"
>>>>>>> Yes it's replaceable. It's not an issue AFAICT because,
>>>>>>> under previous policy, the V3 transaction wouldn't have been
>>>>>>> in the mempool in the first place.
>>>>>>>
>>>>>>> "Can a V2 transaction replace a V3 transaction and vice versa?"
>>>>>>> Yes, otherwise someone can use V3 transactions to censor V2
>>>>>>> transactions spending shared inputs. Note if the
>>>>>>> original V3 transaction has an unconfirmed V3 parent, this would
>>>>>>> violate the "inherited V3" rule and would be rejected.
>>>>>>>
>>>>>>> Thanks for reading! Feedback and review would be much appreciated.
>>>>>>>
>>>>>>> [1]:
>>>>>>> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-Septem=
ber/019464.html
>>>>>>> [2]:
>>>>>>> https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2022-Januar=
y/019817.html
>>>>>>>
>>>>>>> Best,
>>>>>>> Gloria
>>>>>>> _______________________________________________
>>>>>>> bitcoin-dev mailing list
>>>>>>> bitcoin-dev@lists.linuxfoundation.org
>>>>>>> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
>>>>>>>
>>>>>> _______________________________________________
>>>>>> bitcoin-dev mailing list
>>>>>> bitcoin-dev@lists.linuxfoundation.org
>>>>>> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
>>>>>>
>>>>> _______________________________________________
>>>>> bitcoin-dev mailing list
>>>>> bitcoin-dev@lists.linuxfoundation.org
>>>>> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
>>>>>
>>>> _______________________________________________
> bitcoin-dev mailing list
> bitcoin-dev@lists.linuxfoundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
>

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

<div dir=3D"ltr"><div>Hi Bastien,</div><div><br></div>&gt;The other change =
mentioned (making OP_TRUE standard and allowing outputs<br>that are below d=
ust) can be added later, as those won&#39;t be standard until<br>we start a=
llowing them, so there shouldn&#39;t be any backwards-compatibility<br>issu=
e with postponing this change. But maybe it&#39;s still worth having from<b=
r>the get-go, even though it may take a bit more time? Again, I&#39;m curio=
us to<br>have other people&#39;s opinion here<div><br></div><div>I&#39;m se=
nsitive to not wanting to overload the current discussion but this also int=
erests me, provided it can be done in a way that is acceptable (i.e. minimi=
zing the potential UTXO set impact). It would solve a big cost issue in my =
spacechains design if transactions could be 0 fees and have a 0 sat output =
that could be used in order to pay all the fees with CPFP.</div><div><br></=
div><div>My current view is that a tx containing a single 0 sat OP_TRUE out=
put should only get relayed if it is a package where the OP_TRUE output is =
currently being spent in a way that increases the overall fee rate. But eve=
n then, one theoretical edge case remains:<br></div><div>- Another CPFP tx =
can feebump the package on a different (non-OP_TRUE) output with an even hi=
gher fee rate</div><div>- Subsequently, the tx that is spending the OP_TRUE=
 might fall out of the mempool if the mempool fee rate rises</div><div>- Th=
is could cause the 0 sat output to enter the UTXO set (specifically, ration=
al miners wouldn&#39;t refuse to mine such a tx)</div><div><br></div><div>I=
t doesn&#39;t seem like this would happen much in practice (nor is there an=
 incentive to do it on purpose), but the chance isn&#39;t 0.</div><div><br>=
</div><div>Cheers,</div><div>Ruben</div><div><br></div><div><br></div><div>=
</div></div><br><div class=3D"gmail_quote"><div dir=3D"ltr" class=3D"gmail_=
attr">On Thu, Sep 29, 2022 at 4:50 PM Greg Sanders via bitcoin-dev &lt;<a h=
ref=3D"mailto:bitcoin-dev@lists.linuxfoundation.org">bitcoin-dev@lists.linu=
xfoundation.org</a>&gt; wrote:<br></div><blockquote class=3D"gmail_quote" s=
tyle=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);pad=
ding-left:1ex"><div dir=3D"ltr">&gt; Right, good catch, this does require n=
ew logic to handle this case.<br>As Gloria points out, this should be doabl=
e, and is definitely worth<br>adding (those CSV 1 on every other output are=
 really hacky, glad to<br>find a way to get rid of them).<div><br></div><di=
v>For the record, it turns out ephemeral anchors=C2=A0+ v3 solves this alre=
ady, as the anchor must be spent, and the parent tx may only have one child=
. Somehow I missed this implication for a few months. It&#39;s great news i=
f we can directly source fees from any output claimable, including HTLCs!</=
div></div><br><div class=3D"gmail_quote"><div dir=3D"ltr" class=3D"gmail_at=
tr">On Thu, Sep 29, 2022 at 5:15 AM Bastien TEINTURIER &lt;<a href=3D"mailt=
o:bastien@acinq.fr" target=3D"_blank">bastien@acinq.fr</a>&gt; wrote:<br></=
div><blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;bor=
der-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir=3D"ltr">Hi G=
loria, Greg,<br><br>&gt; I interpret most of the discussion around limitati=
ons as ideas for<br>&gt; future improvements rather than criticisms of the =
proposal<br><br>As far as I&#39;m concerned, definitely!<br><br>My current =
understanding is that the main change/improvement that would<br>make sense =
here is restricting the whole v3 package&#39;s size (instead of<br>just the=
 child) via committing to a specific value in the taproot annex<br>(also no=
te that it&#39;s probably not just the v3 package&#39;s size, it should<br>=
be the whole unconfirmed package including potential v2 unconfirmed<br>ance=
stors).<br><br>While I think this would be very valuable and would like to =
see this<br>happen, I believe that can be done in a second, separate step s=
ince this<br>would make relay policy stricter (some v3 transactions that pr=
eviously<br>propagated wouldn&#39;t propagate under this new rule). As long=
 as you are<br>able to find a path to miners through upgraded peers that us=
e this annex<br>approach, you should be able to resolve ACP pinning issues?=
<br><br>I&#39;m curious to know how other people feel about that: is it ok =
to do<br>later or should we try to implement this for the first release of =
v3<br>transactions?<br><br>The other change mentioned (making OP_TRUE stand=
ard and allowing outputs<br>that are below dust) can be added later, as tho=
se won&#39;t be standard until<br>we start allowing them, so there shouldn&=
#39;t be any backwards-compatibility<br>issue with postponing this change. =
But maybe it&#39;s still worth having from<br>the get-go, even though it ma=
y take a bit more time? Again, I&#39;m curious to<br>have other people&#39;=
s opinion here, I&#39;d be happy to get all of those directly<br>in the fir=
st release of v3 transactions, but I don&#39;t know how much<br>implementat=
ion will have to go into that.<br><br>&gt; For clarification, package RBF i=
s ParentTx*s*(plural), and ChildTx(singular),<br>&gt; so it might be a bit =
more complicated than we&#39;re thinking<br><br>Right, good catch, this doe=
s require new logic to handle this case.<br>As Gloria points out, this shou=
ld be doable, and is definitely worth<br>adding (those CSV 1 on every other=
 output are really hacky, glad to<br>find a way to get rid of them).<br><br=
>Thanks,<br>Bastien</div><br><div class=3D"gmail_quote"><div dir=3D"ltr" cl=
ass=3D"gmail_attr">Le=C2=A0lun. 26 sept. 2022 =C3=A0=C2=A018:48, Gloria Zha=
o &lt;<a href=3D"mailto:gloriajzhao@gmail.com" target=3D"_blank">gloriajzha=
o@gmail.com</a>&gt; a =C3=A9crit=C2=A0:<br></div><blockquote class=3D"gmail=
_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204=
,204);padding-left:1ex"><div dir=3D"ltr">Hi Greg, Antoine, Bastien, =C2=A0<=
br>=C2=A0 <br>Thanks very much for the feedback! I interpret most of the di=
scussion around limitations as ideas for future improvements rather than cr=
iticisms of the proposal (please correct me if I&#39;m wrong). I&#39;ll try=
 to respond to as much as possible.<br><br>Also I realize that I didn&#39;t=
 contextualize this proposal clearly enough; it is very tailored for LN Pen=
alty and definitely doesn&#39;t close all pinning attacks possible (sorry f=
or confusing anyone). I also agree that some bits can be a little ugly or t=
ack-on; I would definitely prefer a comprehensive RBF revamp to fix all our=
 problems and enable other fee-bumping strategies such as sign-ANYONECANPAY=
-then-bring-your-own-fees-by-adding-inputs-at-broadcast. I was hoping to ge=
t some ideas with the &quot;RBF Improvements&quot; post in January, but it =
doesn&#39;t seem like we&#39;re much closer to a workable proposal. I think=
 this is a minimally-invasive step that works for Lightning today, a small =
fix similar to CPFP carve out.<br><br>&gt; As you likely know from previous=
 discussions the biggest scenario this does not fix in my estimation is ANY=
ONECANPAY situations. If the parent transaction can be &quot;inflated&quot;=
 by tacking on additional inputs, this means the total weight of the parent=
 tx lowers the effective feerate of the package. =C2=A0<br>=C2=A0 <br>(For =
more context to other readers I wrote an explanation for this in &quot;SIGH=
ASH_ANYONECANPAY Pinning&quot; section of RBF ML post).=C2=A0 Yes, this unf=
ortunately doesn&#39;t fix any of the existing pinning attacks for single t=
ransaction RBF but also doesn&#39;t make them worse. This boils down to add=
ing an incentive compatibility rule that ensures you can&#39;t replace a tr=
ansaction with something that will confirm slower. Package RBF has an ances=
tor feerate-based rule for this (note it is quite conservative and not perf=
ect).<br><br>So in the scenario above with the &quot;inflated&quot; parent =
that was signed ACP, the replacement would be rejected because the package =
ancestor feerate is lower than the feerate of what is being replaced. But i=
t is imperfect (explained below) and thus I wouldn&#39;t recommend it for s=
ingle transaction replacement. So that attack still exists for single trans=
actions, yes. =C2=A0<br><br>The strategy of using ACP to bring-your-own-fee=
s has its own challenges but hopefully has no current use cases as you say.=
 AFAIK LN Penalty is not affected by this since it doesn&#39;t use ACP, tho=
ugh obviously I agree we should fix it for the future.<br><br>So when I sai=
d &quot;this is intended for fee-bumping presigned txns in contracting prot=
ocols,&quot; I should have said &quot;this is intended for fee-bumping pres=
igned txns specifically using CPFP and anchor outputs.&quot; Apologies for =
forgetting to contextualize, I&#39;ve been sitting on this for too long.<br=
>=C2=A0 <br>&gt; The other scenario it doesn&#39;t really fix is where HTLC=
/commitment-like transactions are being resolved in a batch, but due to rel=
ative time constraints, you may want to accelerate some and not others. Now=
 you must pay higher rates to replace all of the transaction bumps. This is=
 a &quot;self-pin&quot; and &quot;get good at utxos noob&quot; type problem=
, but it&#39;s something that axing rule#3 in favor of a Replace-by-ancesto=
r-feerate system would get us. =C2=A0<br>=C2=A0 <br>I understand you to mea=
n &quot;if you don&#39;t have enough UTXOs and you&#39;re forced to batch-b=
ump, you over-pay because you need to bring them all to the highest target =
feerate.&quot; Isn&#39;t this kind of separate, wallet-related problem? Con=
tracting or not, surely every wallet needs to have enough UTXOs to not batc=
h transactions that shouldn&#39;t be batched... I don&#39;t see how a repla=
ce-by-ancestor-feerate policy would make any difference for this?<br><br>Al=
so in general I&#39;d like to reiterate that ancestor feerate is not a pana=
cea to all our RBF incentive compatibility concerns. Like individual feerat=
e, unless we run the mining algorithm, it cannot tell us exactly how quickl=
y this transaction would be mined.<br><br>We&#39;re estimating the incentiv=
e compatibility of the original transaction(s) and replacement transaction(=
s), with the goal of not letting a transaction replace something that would=
 have been more incentive compatible to mine. As such, we don&#39;t want to=
 overestimate how good the replacement is, and we don&#39;t want to underes=
timate how good the original transactions are. This rule &quot;The minimum =
between package feerate and ancestor feerate of the child is not lower than=
 the individual feerates of all directly conflicting transactions and the a=
ncestor feerates of all original transactions&quot; is a conservative estim=
ate.<br><br>&gt; Would kind of be nice if package RBF would detect a &quot;=
sibling output spend&quot; conflict, and knock it out of the mempool via th=
e other replacement rules? Getting rid of the requirement to 1 block csv lo=
ck every output would be quite nice from a smart contracting composability =
point of view.<br><br>Interesting, so when a transaction hits a mempool tx&=
#39;s descendant limit, we consider evicting one of its descendants in favo=
r of this transaction, based on the RBF rules.<br>Cool idea! After chewing =
on this for a bit, I think this *also* just boils down to the fact that RBF=
 should require replacements to be better mining candidates. As in, if we a=
dded this policy and it can make us evict the sibling and accept a transact=
ion with a bunch of low-feerate ancestor junk, it would be a new pinning ve=
ctor. <br>=C2=A0 <br>&gt; If you&#39;re a miner and you receive a non-V3, s=
econd descendant of an unconfirmed V3 transaction, if the offered fee is in=
 the top mempool backlog, I think you would have an interest to accept such=
 a transaction. =C2=A0 =C2=A0 =C2=A0<br>&gt; So I&#39;m not sure if those t=
wo rules are compatible with miners incentives... =C2=A0<br>=C2=A0 <br>The =
same argument can be made for the 26th descendant of a mempool transaction;=
 it&#39;s also not entirely incentive-compatible to reject it, but that is =
not the *only* design goal in mempool policy. Of course, the difference her=
e is that the 25-descendant limit rule is a sensible DoS protection, while =
this 1-descendant limit rule is more of a &quot;help the Bitcoin ecosystem&=
quot; policy, just like CPFP carve-out, dust limit, etc. I can of course un=
derstand why not everyone would be in favor of this, but I do think it&#39;=
s worth it.<br>=C2=A0 <br>&gt; &gt; 4. A V3 transaction that has an unconfi=
rmed V3 ancestor cannot be =C2=A0 =C2=A0<br>&gt; &gt; =C2=A0 =C2=A0larger t=
han 1000 virtual bytes. =C2=A0 =C2=A0<br>=C2=A0 =C2=A0<br>&gt; If I underst=
and correctly the 1000 vb upper bound rational, it would be to constraint t=
he pinning counterparty to attach a high fee to a child due to the limited =
size, if they would like this transaction to be stuck in the network mempoo=
ls. By doing so=C2=A0 this child has high odds to confirm. =C2=A0<br>=C2=A0=
 <br><div>Yeah exactly, the &quot;Rule 3 pin&quot; is done by adding a chil=
d that&#39;s high-fee (so you have to pay that much to evict it). Because t=
hey *don&#39;t* want this tx to confirm, normally, this child would be real=
ly large. If they only have 1000vB for the child, they can&#39;t increase t=
he replacement cost without also fee-bumping the transaction to make it con=
firm faster.=C2=A0 </div><br>&gt; As of today, I think yes you can already =
fingerprint LN transactions on the=C2=A0 spec-defined amount value of the a=
nchor outputs, 330 sats. There is always one of them on post-anchor commitm=
ent transactions. And sadly I would say we&#39;ll always have tricky finger=
prints leaking from unilateral LN closures such as HTLC/PTLC timelocks... =
=C2=A0<br><div><br></div><div>&gt; I agree with you, this isn&#39;t worse t=
han today, unilateral closes will</div><div>probably always be identifiable=
 on-chain.</div><br>Great to hear that there is no privacy worsening!<br><b=
r>Best, =C2=A0<br>Gloria<br></div><br><div class=3D"gmail_quote"><div dir=
=3D"ltr" class=3D"gmail_attr">On Mon, Sep 26, 2022 at 5:02 PM Greg Sanders =
&lt;<a href=3D"mailto:gsanders87@gmail.com" target=3D"_blank">gsanders87@gm=
ail.com</a>&gt; wrote:<br></div><blockquote class=3D"gmail_quote" style=3D"=
margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-lef=
t:1ex"><div dir=3D"ltr">Bastien,<div><br></div><div>&gt; This may be alread=
y covered by the current package RBF logic, in that</div>scenario we are si=
mply replacing [ParentTx, ChildTx1] with<br>[ParentTx, ChildTx2] that pays =
more fees, right?<div><br></div><div>For clarification, package RBF is Pare=
ntTx*s*(plural), and ChildTx(singular), so it might be a bit more complicat=
ed than we&#39;re thinking, and currently the V3 proposal would first de-du=
plicate=C2=A0the ParentTx based on what is in the mempool, then look at the=
 &quot;rest&quot; of the transactions as a package, then individually. Not =
the same, not sure how different. I&#39;ll defer to experts.</div><div><br>=
</div><div>Best,</div><div>Greg</div></div><br><div class=3D"gmail_quote"><=
div dir=3D"ltr" class=3D"gmail_attr">On Mon, Sep 26, 2022 at 11:48 AM Basti=
en TEINTURIER via bitcoin-dev &lt;<a href=3D"mailto:bitcoin-dev@lists.linux=
foundation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a>=
&gt; wrote:<br></div><blockquote class=3D"gmail_quote" style=3D"margin:0px =
0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div=
 dir=3D"ltr">Thanks Gloria for this great post.<br><br>This is very valuabl=
e work for L2 contracts, and will greatly improve<br>their security model.<=
br><br>&gt; &quot;Only 1 anchor output? What if I need to bump counterparty=
&#39;s commitment tx in mempool?&quot;<br>&gt; You won&#39;t need to fee-bu=
mp a counterparty&#39;s commitment tx using CPFP.<br>&gt; You would just pa=
ckage RBF it by attaching a high-feerate child to<br>&gt; your commitment t=
x.<br><br>Note that we can also very easily make that single anchor spendab=
le by<br>both participants (or even anyone), so if you see your counterpart=
y&#39;s<br>commitment in your mempool, you can bump it without publishing y=
our<br>own commitment, which is quite desirable (your own commitment tx has=
<br>CSV delays on your outputs, whereas your counterparty&#39;s commitment =
tx<br>doesn&#39;t).<br><br>&gt; &quot;Is this a privacy issue, i.e. doesn&#=
39;t it allow fingerprinting LN<br>transactions based on nVersion?&quot;<br=
><br>I agree with you, this isn&#39;t worse than today, unilateral closes w=
ill<br>probably always be identifiable on-chain.<br><br>&gt; Would kind of =
be nice if package RBF would detect a &quot;sibling output spend&quot;<br>&=
gt; conflict, and knock it out of the mempool via the other replacement rul=
es?<br>&gt; Getting rid of the requirement to 1 block csv lock every output=
 would be<br>&gt; quite nice from a smart contracting composability point o=
f view.<br><br>+1, that would be very neat!<br><br>This may be already cove=
red by the current package RBF logic, in that<br>scenario we are simply rep=
lacing [ParentTx, ChildTx1] with<br>[ParentTx, ChildTx2] that pays more fee=
s, right?<br><br>&gt; 1) I do think that we should seriously consider allow=
ing OP_TRUE to become<br>&gt; a standard script type as part of this policy=
 update. If pinning is solved,<br>&gt; then there&#39;s no reason to requir=
e all those extra bytes for &quot;binding&quot; an<br>&gt; anchor to a spec=
ific wallet/user. We can save quite a few bytes by having<br>&gt; the input=
 be empty of witness data.<br>&gt; 2) If we allow for a single dust-value(0=
 on up) output which is immediately<br>&gt; spent by the package, anchors b=
ecome even easier to to design. No value has<br>&gt; to be &quot;sapped&quo=
t; from contract participants to make an anchor output. There&#39;s<br>&gt;=
 more complications for this, such as making sure the parent transaction is=
<br>&gt; dropped if the child spend is dropped, but maybe it&#39;s worth th=
e squeeze.<br><br>I also think both of these could be quite useful. This wo=
uld probably always<br>be used in combination with a parent transaction tha=
t pays 0 fees, so the<br>0-value output would always be spent in the same b=
lock.<br><br>But this means we could end up with 0-value outputs in the utx=
o set, if for<br>some reason the parent tx is CPFP-ed via another output th=
an the 0-value one,<br>which would be a utxo set bloat issue. But I&#39;d a=
rgue that we&#39;re probably<br>already creating utxo set bloat with the 33=
0 sat anchor outputs (especially<br>since we use two of them, but only one =
is usually spent), so it would<br>probably be *better* than what we&#39;re =
doing today.<br><br>Thanks,<br>Bastien</div><br><div class=3D"gmail_quote">=
<div dir=3D"ltr" class=3D"gmail_attr">Le=C2=A0lun. 26 sept. 2022 =C3=A0=C2=
=A003:22, Antoine Riard via bitcoin-dev &lt;<a href=3D"mailto:bitcoin-dev@l=
ists.linuxfoundation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundati=
on.org</a>&gt; a =C3=A9crit=C2=A0:<br></div><blockquote class=3D"gmail_quot=
e" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204)=
;padding-left:1ex"><div dir=3D"ltr">Hi Gloria,<br><br>Thanks for the progre=
ss on package RBF, few early questions.<br><br>&gt; 2. Any descendant of an=
 unconfirmed V3 transaction must also be V3.<br><br>&gt; 3. An unconfirmed =
V3 transaction cannot have more than 1 descendant.<br><br>If you&#39;re a m=
iner and you receive a non-V3, second descendant of an unconfirmed V3 trans=
action, if the offered fee is in the top mempool backlog, I think you would=
 have an interest to accept such a transaction.<br><br>So I&#39;m not sure =
if those two rules are compatible with miners incentives...<br><br>&gt; 4. =
A V3 transaction that has an unconfirmed V3 ancestor cannot be<br>&gt; =C2=
=A0 =C2=A0larger than 1000 virtual bytes.<br><br>If I understand correctly =
the 1000 vb upper bound rational, it would be to constraint the pinning cou=
nterparty to attach a high fee to a child due to the limited size, if they =
would like this transaction to be stuck in the network mempools. By doing s=
o=C2=A0 this child has high odds to confirm.<br><br>I still wonder if this =
compatible with miner incentives in period of empty mempools, in the sense =
that if you&#39;ve already a V3 transaction of size 100Kvb offering 2 sat/v=
b, it&#39;s more interesting than a V3 replacement candidate of size 1000 v=
b offering 10 sat/vb. It could be argued the former should be conserved.<br=
><br>(That said, the hard thing with any replacement strategy we might evic=
t a parent transaction *now* to which is attached a high-feerate child *lat=
ter* making for a utxo considered the best ancestor set. Maybe in the long-=
term miners should keep every transaction ever accepted...)<br><br>&gt; (Lo=
wer bound) the smaller this limit, the fewer UTXOs a child may use<br>&gt; =
to fund this fee-bump. For example, only allowing the V3 child to have<br>&=
gt; 2 inputs would require L2 protocols to manage a wallet with high-value<=
br>&gt; UTXOs and make batched fee-bumping impossible. However, as the<br>&=
gt; fee-bumping child only needs to fund fees (as opposed to payments),<br>=
&gt; just a few UTXOs should suffice.<br><br>Reminder for L2 devs, batched =
fee-bumping of time-sensitive confirmations of commitment transactions is u=
nsafe, as the counterparty could enter in a &quot;cat-and-mouse&quot; game =
to replace one of the batch element at each block to delay confirmation of =
the remaining elements in the batch, I think.<br><br>On the other hand, I w=
onder if we wouldn&#39;t want a higher bound. LN wallets are likely to have=
 one big UTXO in their fee-bumping reserve pool, as the cost of acquiring U=
TXO is non-null and in the optimistic case, you don&#39;t need to do unilat=
eral closure. Let&#39;s say you close dozens of channels at the same time, =
a UTXO pool management strategy might be to fan-out the first spends UTXOs =
in N fan-out outputs ready to feed the remaining in-flight channels.<br><br=
>&gt; 1. The rule around unconfirmed inputs was<br>&gt; originally &quot;A =
package may include new unconfirmed inputs, but the<br>&gt; ancestor feerat=
e of the child must be at least as high as the ancestor<br>&gt; feerates of=
 every transaction being replaced.&quot;<br><br>Note, I think we would like=
 this new RBF rule to also apply to single transaction package, e.g second-=
stage HTLC transactions, where a counterparty pins a HTLC-preimage by abusi=
ng rule 3. In that case, the honest LN node should be able to broadcast a &=
quot;at least as high ancestor feerate&quot; HTLC-timeout transaction. With=
 `option_anchor_outputs&quot; there is no unconfirmed ancestor to replace, =
as the commitment transaction, whatever the party it is originating from, s=
hould already be confirmed.<br><br>&gt; &quot;Is this a privacy issue, i.e.=
 doesn&#39;t it allow fingerprinting LN<br>transactions based on nVersion?&=
quot;<br><br>As of today, I think yes you can already fingerprint LN transa=
ctions on the=C2=A0 spec-defined amount value of the anchor outputs, 330 sa=
ts. There is always one of them on post-anchor commitment transactions. And=
 sadly I would say we&#39;ll always have tricky fingerprints leaking from u=
nilateral LN closures such as HTLC/PTLC timelocks...<br><br>&gt; &quot;Can =
a V2 transaction replace a V3 transaction and vice versa?&quot;<br><br>IIUC=
, a V3 package could replace a V2 package, with the benefit of the new pack=
age RBF rules applied. I think this would be a significant advantage for LN=
, as for the current ~85k of opened channels, the old V2 states shouldn&#39=
;t be pinning vectors. Currently, commitment transactions signal replaceabi=
lity.<br></div><br><div class=3D"gmail_quote"><div dir=3D"ltr" class=3D"gma=
il_attr">Le=C2=A0ven. 23 sept. 2022 =C3=A0=C2=A011:26, Gloria Zhao via bitc=
oin-dev &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=
=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a>&gt; a =C3=A9crit=C2=
=A0:<br></div><blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px=
 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir=3D=
"ltr">Hi everyone,<br><br>I&#39;m writing to propose a very simple set of m=
empool/transaction relay<br>policies intended to aid L2/contract protocols.=
 I realized that<br>the previously proposed Package Mempool Accept package =
RBF [1]<br><div>had a few remaining problems after digging into the RBF log=
ic more [2].</div><div>This additional set of policies solves them without =
requiring a huge RBF overhaul.<br></div><br>I&#39;ve written an implementat=
ion (and docs) for Bitcoin Core:<br><a href=3D"https://github.com/bitcoin/b=
itcoin/pull/25038" target=3D"_blank">https://github.com/bitcoin/bitcoin/pul=
l/25038</a><br><br>(You may notice that this proposal incorporates feedback=
 on the PR - thanks Suhas Daftuar, Gregory Sanders, Bastien Teinturier, Ant=
hony Towns, and others.)<br><br>If you are interested in using package RBF/=
relay to bump presigned<br>transactions, I think you may be interested in r=
eviewing this proposal.<br>This should solve Rule 3 pinning and perhaps all=
ow us<br>to get rid of CPFP carve-out (yay!). I&#39;m keen to hear if peopl=
e find<br>the 1-anchor-output, 1000vB child limit too restrictive. Also, if=
 you find a<br>pinning attack or something that makes it unusable for you, =
I would<br>really really like to know.<br><br>Note that transactions with n=
Version=3D3 (&quot;V3 transactions&quot;) are<br>currently non-standard in =
Bitcoin Core. That means **anything that was<br>standard before this policy=
 change would still be standard<br>afterwards.** If you don&#39;t want your=
 transactions to be subject to<br>these rules, just continue whatever you&#=
39;re doing and don&#39;t use<br>nVersion=3D3. AFAICT this shouldn&#39;t br=
eak anything, but let me know if<br>this would be disruptive for you?<br><b=
r>**New Policies:**<br><br>This includes:<br>- a set of additional policy r=
ules applying to V3 transactions<br>- modifications to package RBF rules<br=
><br>**V3 transactions:**<br><br>Existing standardness rules apply to V3 (e=
.g. min/max tx weight,<br>standard output types, cleanstack, etc.). The fol=
lowing additional<br>rules apply to V3:<br><br>1. A V3 transaction can be r=
eplaced, even if it does not signal BIP125<br>=C2=A0 =C2=A0replaceability. =
(It must also meet the other RBF rules around fees,<br>etc. for replacement=
 to happen).<br><br>2. Any descendant of an unconfirmed V3 transaction must=
 also be V3.<br><br>*Rationale*: Combined with Rule 1, this gives us the pr=
operty of<br>&quot;inherited&quot; replaceability signaling when descendant=
s of unconfirmed<br>transactions are created. Additionally, checking whethe=
r a transaction<br>signals replaceability this way does not require mempool=
 traversal,<br>and does not change based on what transactions are mined. It=
 also<br>makes subsequent rules about descendant limits much easier to chec=
k.<br><br>*Note*: The descendant of a *confirmed* V3 transaction does not n=
eed to be V3.<br><br>3. An unconfirmed V3 transaction cannot have more than=
 1 descendant.<br><br>*Rationale*: (Upper bound) the larger the descendant =
limit, the more<br>transactions may need to be replaced. This is a problema=
tic pinning<br>attack, i.e., a malicious counterparty prevents the transact=
ion from<br>being replaced by adding many descendant transactions that aren=
&#39;t<br>fee-bumping.<br><br>(Lower bound) at least 1 descendant is requir=
ed to allow CPFP of the<br>presigned transaction. The contract protocol can=
 create presigned<br>transactions paying 0 fees and 1 output for attaching =
a CPFP at<br>broadcast time (&quot;anchor output&quot;). Without package RB=
F, multiple anchor<br>outputs would be required to allow each counterparty =
to fee-bump any<br>presigned transaction. With package RBF, since the presi=
gned<br>transactions can replace each other, 1 anchor output is sufficient.=
<br><br>4. A V3 transaction that has an unconfirmed V3 ancestor cannot be<b=
r>=C2=A0 =C2=A0larger than 1000 virtual bytes.<br><br>*Rationale*: (Upper b=
ound) the larger the descendant size limit, the<br>more vbytes may need to =
be replaced. With default limits, if the child<br>is e.g. 100,000vB, that m=
ight be an additional 100,000sats (at<br>1sat/vbyte) or more, depending on =
the feerate.<br><br>(Lower bound) the smaller this limit, the fewer UTXOs a=
 child may use<br>to fund this fee-bump. For example, only allowing the V3 =
child to have<br>2 inputs would require L2 protocols to manage a wallet wit=
h high-value<br>UTXOs and make batched fee-bumping impossible. However, as =
the<br>fee-bumping child only needs to fund fees (as opposed to payments),<=
br>just a few UTXOs should suffice.<br><br>With a limit of 1000 virtual byt=
es, depending on the output types, the<br>child can have 6-15 UTXOs, which =
should be enough to fund a fee-bump<br>without requiring a carefully-manage=
d UTXO pool. With 1000 virtual<br>bytes as the descendant limit, the cost t=
o replace a V3 transaction<br>has much lower variance.<br><br>*Rationale*: =
This makes the rule very easily &quot;tacked on&quot; to existing<br>logic =
for policy and wallets. A transaction may be up to 100KvB on its<br>own (`M=
AX_STANDARD_TX_WEIGHT`) and 101KvB with descendants<br>(`DEFAULT_DESCENDANT=
_SIZE_LIMIT_KVB`). If an existing V3 transaction<br>in the mempool is 100Kv=
B, its descendant can only be 1000vB, even if<br>the policy is 10KvB.<br><b=
r>**Package RBF modifications:**<br><br>1. The rule around unconfirmed inpu=
ts was<br>originally &quot;A package may include new unconfirmed inputs, bu=
t the<br>ancestor feerate of the child must be at least as high as the ance=
stor<br>feerates of every transaction being replaced.&quot;<br><br>The pack=
age may still include new unconfirmed inputs. However,<br>the new rule is m=
odified to be &quot;The minimum between package feerate<br>and ancestor fee=
rate of the child is not lower than the individual<br>feerates of all direc=
tly conflicting transactions and the ancestor<br>feerates of all original t=
ransactions.&quot;<br><br>*Rationale*: We are attempting to ensure that the=
 replacement<br>transactions are not less incentive-compatible to mine. How=
ever, a<br>package/transaction&#39;s ancestor feerate is not perfectly repr=
esentative<br>of its incentive compatibility; it may overestimate (some sub=
set of<br>the ancestors could be included by itself if it has other high-fe=
erate<br>descendants or are themselves higher feerate than this<br>package/=
transaction). Instead, we use the minimum between the package<br>feerate an=
d ancestor feerate of the child as a more conservative value<br>than what w=
as proposed originally.<br><br>2. A new rule is added, requiring that all p=
ackage transactions with<br>mempool conflicts to be V3. This also means the=
 &quot;sponsoring&quot;<br>child transaction must be V3.<br><br>*Note*: Com=
bined with the V3 rules, this means the package must be<br>a child-with-par=
ents package. Since package validation is only<br>attempted if the transact=
ions do not pay sufficient fees to be<br>accepted on their own, this effect=
ively means that only V3<br>transactions can pay to replace their ancestors=
&#39; conflicts, and only<br>V3 transactions&#39; replacements may be paid =
for by a descendant.<br><br>*Rationale*: The fee-related rules are economic=
ally rational for<br>ancestor packages, but not necessarily other types of =
packages.<br>A child-with-parents package is a type of ancestor package. It=
<br>may be fine to allow any ancestor package, but it&#39;s more difficult<=
br>to account for all of the possibilities. For example, it gets much<br>ha=
rder to see that we&#39;re applying the descendant limits correctly if<br>t=
he package has a gnarly, many-generation, non-tree shape. I&#39;m also<br>n=
ot sure if this policy is 100% incentive-compatible if the sponsor<br>is no=
t a direct descendant of the sponsee.<br><br>Please see doc/policy/version3=
_transactions.md and<br>doc/policy/packages.md in the PR for the full set o=
f rules.<br><br>**Intended usage for LN:**<br><br>Commitment transactions s=
hould be V3 and have 1 anchor output. They<br>can be signed with 0 fees (or=
 1sat/vbyte) once package relay is deployed<br>on a significant portion of =
the network. If the commitment tx must<br>be broadcast, determine the desir=
ed feerate at broadcast time and<br>spend the anchor output in a high feera=
te transaction. I&#39;m going to<br>call the broadcasted commitment tx &quo=
t;the parent&quot; and the attached<br>fee-bumping tx &quot;the child.&quot=
;<br><br>- This child must be V3.<br>- This child must be at most 1000vB. N=
ote this restricts the<br>=C2=A0 number of inputs you can use to fund the f=
ee bump. Depending<br>on the output types, this is around 6-15.<br>- One ch=
ild may fund fees for multiple commitment tx (&quot;batched<br>=C2=A0 fee-b=
umping&quot;).<br>- To do a second fee-bump to add more fees, replace the<b=
r>=C2=A0 *child* with a higher-feerate tx. Do not try to attach a grandchil=
d.<br><br>Otherwise, never try to spend from an unconfirmed V3 transaction.=
 The<br>descendant limits for V3 transactions are very restrictive.<br><br>=
**Expected Questions:**<br><br>&quot;Does this fix Rule 3 Pinning?&quot;<br=
>Yes. The V3 descendant limit restricts both you and your counterparty.<br>=
Assuming nodes adopted this policy, you may reasonably assume that you<br>o=
nly need to replace the commitment transaction + up to 1000vB.<br><br>&quot=
;Only 1 anchor output? What if I need to bump counterparty&#39;s commitment=
 tx in mempool?&quot;<br><div>You won&#39;t need to fee-bump a counterparty=
&#39;s commitment tx using CPFP.</div><div>You would just package RBF it by=
 attaching a high-feerate child to</div>your commitment tx.<br><br>&quot;Is=
 this a privacy issue, i.e. doesn&#39;t it allow fingerprinting LN<br>trans=
actions based on nVersion?&quot;<br>Indeed it may be unrealistic to assume =
V3 transactions will be in<br>widespread use outside of L2. IIUC, unilatera=
l closes are already<br>obvious LN transactions because of the HTLC inputs.=
 For e.g.<br>cooperative closes and opens, I think it makes sense to contin=
ue using<br>V2. So, unless I&#39;m missing something, this shouldn&#39;t ma=
ke it worse.<br><br>&quot;So a V3 transaction that doesn&#39;t signal BIP12=
5 replaceability is<br>replaceable? Is that a backward compatibility issue?=
&quot;<br>Yes it&#39;s replaceable. It&#39;s not an issue AFAICT because,<b=
r>under previous policy, the V3 transaction wouldn&#39;t have been<br>in th=
e mempool in the first place.<br><br>&quot;Can a V2 transaction replace a V=
3 transaction and vice versa?&quot;<br>Yes, otherwise someone can use V3 tr=
ansactions to censor V2<br>transactions spending shared inputs. Note if the=
<br>original V3 transaction has an unconfirmed V3 parent, this would<br>vio=
late the &quot;inherited V3&quot; rule and would be rejected.<br><br>Thanks=
 for reading! Feedback and review would be much appreciated.<br><br>[1]: <a=
 href=3D"https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-Septe=
mber/019464.html" target=3D"_blank">https://lists.linuxfoundation.org/piper=
mail/bitcoin-dev/2021-September/019464.html</a><br><div>[2]: <a href=3D"htt=
ps://lists.linuxfoundation.org/pipermail/bitcoin-dev/2022-January/019817.ht=
ml" target=3D"_blank">https://lists.linuxfoundation.org/pipermail/bitcoin-d=
ev/2022-January/019817.html</a></div><div><br></div>Best,<br>Gloria</div>
_______________________________________________<br>
bitcoin-dev mailing list<br>
<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_blank">=
bitcoin-dev@lists.linuxfoundation.org</a><br>
<a href=3D"https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev" =
rel=3D"noreferrer" target=3D"_blank">https://lists.linuxfoundation.org/mail=
man/listinfo/bitcoin-dev</a><br>
</blockquote></div>
_______________________________________________<br>
bitcoin-dev mailing list<br>
<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_blank">=
bitcoin-dev@lists.linuxfoundation.org</a><br>
<a href=3D"https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev" =
rel=3D"noreferrer" target=3D"_blank">https://lists.linuxfoundation.org/mail=
man/listinfo/bitcoin-dev</a><br>
</blockquote></div>
_______________________________________________<br>
bitcoin-dev mailing list<br>
<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_blank">=
bitcoin-dev@lists.linuxfoundation.org</a><br>
<a href=3D"https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev" =
rel=3D"noreferrer" target=3D"_blank">https://lists.linuxfoundation.org/mail=
man/listinfo/bitcoin-dev</a><br>
</blockquote></div>
</blockquote></div>
</blockquote></div>
</blockquote></div>
_______________________________________________<br>
bitcoin-dev mailing list<br>
<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_blank">=
bitcoin-dev@lists.linuxfoundation.org</a><br>
<a href=3D"https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev" =
rel=3D"noreferrer" target=3D"_blank">https://lists.linuxfoundation.org/mail=
man/listinfo/bitcoin-dev</a><br>
</blockquote></div>

--00000000000006cc9d05e9d9df97--