@@ -120,8 +120,7 @@ object OpenDualFundedChannelTlv {
120
120
.typecase(UInt64 (0 ), upfrontShutdownScriptCodec)
121
121
.typecase(UInt64 (1 ), channelTypeCodec)
122
122
.typecase(UInt64 (2 ), requireConfirmedInputsCodec)
123
- // We use a temporary TLV while the spec is being reviewed.
124
- .typecase(UInt64 (1339 ), requestFundingCodec)
123
+ .typecase(UInt64 (5 ), requestFundingCodec)
125
124
.typecase(UInt64 (0x47000007 ), pushAmountCodec)
126
125
)
127
126
}
@@ -142,8 +141,7 @@ object TxInitRbfTlv {
142
141
val txInitRbfTlvCodec : Codec [TlvStream [TxInitRbfTlv ]] = tlvStream(discriminated[TxInitRbfTlv ].by(varint)
143
142
.typecase(UInt64 (0 ), tlvField(satoshiSigned.as[SharedOutputContributionTlv ]))
144
143
.typecase(UInt64 (2 ), requireConfirmedInputsCodec)
145
- // We use a temporary TLV while the spec is being reviewed.
146
- .typecase(UInt64 (1339 ), requestFundingCodec)
144
+ .typecase(UInt64 (5 ), requestFundingCodec)
147
145
)
148
146
}
149
147
@@ -155,8 +153,7 @@ object TxAckRbfTlv {
155
153
val txAckRbfTlvCodec : Codec [TlvStream [TxAckRbfTlv ]] = tlvStream(discriminated[TxAckRbfTlv ].by(varint)
156
154
.typecase(UInt64 (0 ), tlvField(satoshiSigned.as[SharedOutputContributionTlv ]))
157
155
.typecase(UInt64 (2 ), requireConfirmedInputsCodec)
158
- // We use a temporary TLV while the spec is being reviewed.
159
- .typecase(UInt64 (1339 ), provideFundingCodec)
156
+ .typecase(UInt64 (5 ), provideFundingCodec)
160
157
)
161
158
}
162
159
@@ -166,8 +163,7 @@ object SpliceInitTlv {
166
163
167
164
val spliceInitTlvCodec : Codec [TlvStream [SpliceInitTlv ]] = tlvStream(discriminated[SpliceInitTlv ].by(varint)
168
165
.typecase(UInt64 (2 ), requireConfirmedInputsCodec)
169
- // We use a temporary TLV while the spec is being reviewed.
170
- .typecase(UInt64 (1339 ), requestFundingCodec)
166
+ .typecase(UInt64 (5 ), requestFundingCodec)
171
167
.typecase(UInt64 (0x47000007 ), tlvField(tmillisatoshi.as[PushAmountTlv ]))
172
168
)
173
169
}
@@ -178,8 +174,7 @@ object SpliceAckTlv {
178
174
179
175
val spliceAckTlvCodec : Codec [TlvStream [SpliceAckTlv ]] = tlvStream(discriminated[SpliceAckTlv ].by(varint)
180
176
.typecase(UInt64 (2 ), requireConfirmedInputsCodec)
181
- // We use a temporary TLV while the spec is being reviewed.
182
- .typecase(UInt64 (1339 ), provideFundingCodec)
177
+ .typecase(UInt64 (5 ), provideFundingCodec)
183
178
.typecase(UInt64 (41042 ), feeCreditUsedCodec)
184
179
.typecase(UInt64 (0x47000007 ), tlvField(tmillisatoshi.as[PushAmountTlv ]))
185
180
)
@@ -197,8 +192,7 @@ object AcceptDualFundedChannelTlv {
197
192
.typecase(UInt64 (0 ), upfrontShutdownScriptCodec)
198
193
.typecase(UInt64 (1 ), channelTypeCodec)
199
194
.typecase(UInt64 (2 ), requireConfirmedInputsCodec)
200
- // We use a temporary TLV while the spec is being reviewed.
201
- .typecase(UInt64 (1339 ), provideFundingCodec)
195
+ .typecase(UInt64 (5 ), provideFundingCodec)
202
196
.typecase(UInt64 (41042 ), feeCreditUsedCodec)
203
197
.typecase(UInt64 (0x47000007 ), pushAmountCodec)
204
198
)
0 commit comments