@@ -1191,23 +1191,21 @@ impl SharedOwnedOutput {
1191
1191
pub ( super ) enum OutputOwned {
1192
1192
/// Belongs to a single party -- controlled exclusively and fully belonging to a single party
1193
1193
Single ( TxOut ) ,
1194
- /// Output with shared control, but fully belonging to local node
1195
- SharedControlFullyOwned ( TxOut ) ,
1196
- /// Output with shared control and joint ownership
1194
+ /// Output with shared control and value split between the two ends (or fully at one side)
1197
1195
Shared ( SharedOwnedOutput ) ,
1198
1196
}
1199
1197
1200
1198
impl OutputOwned {
1201
1199
pub fn tx_out ( & self ) -> & TxOut {
1202
1200
match self {
1203
- OutputOwned :: Single ( tx_out) | OutputOwned :: SharedControlFullyOwned ( tx_out ) => tx_out,
1201
+ OutputOwned :: Single ( tx_out) => tx_out,
1204
1202
OutputOwned :: Shared ( output) => & output. tx_out ,
1205
1203
}
1206
1204
}
1207
1205
1208
1206
fn into_tx_out ( self ) -> TxOut {
1209
1207
match self {
1210
- OutputOwned :: Single ( tx_out) | OutputOwned :: SharedControlFullyOwned ( tx_out ) => tx_out,
1208
+ OutputOwned :: Single ( tx_out) => tx_out,
1211
1209
OutputOwned :: Shared ( output) => output. tx_out ,
1212
1210
}
1213
1211
}
@@ -1219,30 +1217,25 @@ impl OutputOwned {
1219
1217
fn is_shared ( & self ) -> bool {
1220
1218
match self {
1221
1219
OutputOwned :: Single ( _) => false ,
1222
- OutputOwned :: SharedControlFullyOwned ( _) => true ,
1223
1220
OutputOwned :: Shared ( _) => true ,
1224
1221
}
1225
1222
}
1226
1223
1227
1224
fn local_value ( & self , local_role : AddingRole ) -> u64 {
1228
1225
match self {
1229
- OutputOwned :: Single ( tx_out) | OutputOwned :: SharedControlFullyOwned ( tx_out) => {
1230
- match local_role {
1231
- AddingRole :: Local => tx_out. value . to_sat ( ) ,
1232
- AddingRole :: Remote => 0 ,
1233
- }
1226
+ OutputOwned :: Single ( tx_out) => match local_role {
1227
+ AddingRole :: Local => tx_out. value . to_sat ( ) ,
1228
+ AddingRole :: Remote => 0 ,
1234
1229
} ,
1235
1230
OutputOwned :: Shared ( output) => output. local_owned ,
1236
1231
}
1237
1232
}
1238
1233
1239
1234
fn remote_value ( & self , local_role : AddingRole ) -> u64 {
1240
1235
match self {
1241
- OutputOwned :: Single ( tx_out) | OutputOwned :: SharedControlFullyOwned ( tx_out) => {
1242
- match local_role {
1243
- AddingRole :: Local => 0 ,
1244
- AddingRole :: Remote => tx_out. value . to_sat ( ) ,
1245
- }
1236
+ OutputOwned :: Single ( tx_out) => match local_role {
1237
+ AddingRole :: Local => 0 ,
1238
+ AddingRole :: Remote => tx_out. value . to_sat ( ) ,
1246
1239
} ,
1247
1240
OutputOwned :: Shared ( output) => output. remote_owned ( ) ,
1248
1241
}
@@ -1506,12 +1499,9 @@ impl InteractiveTxConstructor {
1506
1499
for output in & outputs_to_contribute {
1507
1500
let new_output = match output {
1508
1501
OutputOwned :: Single ( _tx_out) => None ,
1509
- OutputOwned :: SharedControlFullyOwned ( tx_out) => {
1510
- Some ( ( tx_out. script_pubkey . clone ( ) , tx_out. value . to_sat ( ) ) )
1511
- } ,
1512
1502
OutputOwned :: Shared ( output) => {
1513
1503
// Sanity check
1514
- if output. local_owned >= output. tx_out . value . to_sat ( ) {
1504
+ if output. local_owned > output. tx_out . value . to_sat ( ) {
1515
1505
return Err ( AbortReason :: InvalidLowFundingOutputValue ) ;
1516
1506
}
1517
1507
Some ( ( output. tx_out . script_pubkey . clone ( ) , output. local_owned ) )
@@ -2128,7 +2118,9 @@ mod tests {
2128
2118
2129
2119
/// Generate a single output that is the funding output
2130
2120
fn generate_output ( output : & TestOutput ) -> Vec < OutputOwned > {
2131
- vec ! [ OutputOwned :: SharedControlFullyOwned ( generate_txout( output) ) ]
2121
+ let txout = generate_txout ( output) ;
2122
+ let value = txout. value . to_sat ( ) ;
2123
+ vec ! [ OutputOwned :: Shared ( SharedOwnedOutput :: new( txout, value) ) ]
2132
2124
}
2133
2125
2134
2126
/// Generate a single P2WSH output that is the funding output
@@ -2697,7 +2689,8 @@ mod tests {
2697
2689
. collect :: < Vec < ( TxIn , TransactionU16LenLimited ) > > ( ) ;
2698
2690
let our_contributed = 110_000 ;
2699
2691
let txout = TxOut { value : Amount :: from_sat ( 128_000 ) , script_pubkey : ScriptBuf :: new ( ) } ;
2700
- let outputs = vec ! [ OutputOwned :: SharedControlFullyOwned ( txout) ] ;
2692
+ let value = txout. value . to_sat ( ) ;
2693
+ let outputs = vec ! [ OutputOwned :: Shared ( SharedOwnedOutput :: new( txout, value) ) ] ;
2701
2694
let funding_feerate_sat_per_1000_weight = 3000 ;
2702
2695
2703
2696
let total_inputs: u64 = input_prevouts. iter ( ) . map ( |o| o. value . to_sat ( ) ) . sum ( ) ;
0 commit comments