@@ -61,14 +61,16 @@ static int compare_outputs_at(const struct output_set *a,
61
61
}
62
62
63
63
static const u8 * linearize_input (const tal_t * ctx ,
64
- const struct wally_psbt_input * in )
64
+ const struct wally_psbt * parent ,
65
+ size_t index )
65
66
{
67
+ struct wally_psbt * copy = clone_psbt (NULL , parent );
66
68
struct wally_psbt * psbt = create_psbt (NULL , 1 , 0 , 0 );
69
+ struct wally_psbt_input dummy_in ;
67
70
size_t byte_len ;
68
71
69
- psbt -> inputs [0 ] = * in ;
70
- psbt -> num_inputs ++ ;
71
-
72
+ dummy_in = psbt -> inputs [0 ];
73
+ psbt -> inputs [0 ] = copy -> inputs [index ];
72
74
73
75
/* Sort the inputs, so serializing them is ok */
74
76
wally_map_sort (& psbt -> inputs [0 ].unknowns , 0 );
@@ -88,25 +90,31 @@ static const u8 *linearize_input(const tal_t *ctx,
88
90
89
91
const u8 * bytes = psbt_get_bytes (ctx , psbt , & byte_len );
90
92
91
- /* Hide the inputs we added, so it doesn't get freed */
92
- psbt -> num_inputs -- ;
93
+ psbt -> inputs [ 0 ] = dummy_in ;
94
+
93
95
tal_free (psbt );
96
+ tal_free (copy );
97
+
94
98
return bytes ;
95
99
}
96
100
97
101
static const u8 * linearize_output (const tal_t * ctx ,
98
- const struct wally_psbt_output * out )
102
+ const struct wally_psbt * parent ,
103
+ size_t index )
99
104
{
100
- struct wally_psbt * psbt = create_psbt (NULL , 1 , 1 , 0 );
105
+ struct wally_psbt * copy = clone_psbt (NULL , parent );
106
+ struct wally_psbt * psbt = create_psbt (NULL , 0 , 1 , 0 );
107
+ struct wally_psbt_output dummy_out ;
101
108
size_t byte_len ;
102
109
struct bitcoin_outpoint outpoint ;
103
110
104
111
/* Add a 'fake' non-zero input so libwally will agree to linearize the tx */
105
112
memset (& outpoint , 1 , sizeof (outpoint ));
106
113
psbt_append_input (psbt , & outpoint , 0 , NULL , NULL , NULL );
107
114
108
- psbt -> outputs [0 ] = * out ;
109
- psbt -> num_outputs ++ ;
115
+ dummy_out = psbt -> outputs [0 ];
116
+ psbt -> outputs [0 ] = copy -> outputs [index ];
117
+
110
118
/* Sort the outputs, so serializing them is ok */
111
119
wally_map_sort (& psbt -> outputs [0 ].unknowns , 0 );
112
120
@@ -120,9 +128,10 @@ static const u8 *linearize_output(const tal_t *ctx,
120
128
121
129
const u8 * bytes = psbt_get_bytes (ctx , psbt , & byte_len );
122
130
123
- /* Hide the outputs we added, so it doesn't get freed */
124
- psbt -> num_outputs -- ;
131
+ psbt -> outputs [0 ] = dummy_out ;
125
132
tal_free (psbt );
133
+ tal_free (copy );
134
+
126
135
return bytes ;
127
136
}
128
137
@@ -131,10 +140,8 @@ static bool input_identical(const struct wally_psbt *a,
131
140
const struct wally_psbt * b ,
132
141
size_t b_index )
133
142
{
134
- const u8 * a_in = linearize_input (tmpctx ,
135
- & a -> inputs [a_index ]);
136
- const u8 * b_in = linearize_input (tmpctx ,
137
- & b -> inputs [b_index ]);
143
+ const u8 * a_in = linearize_input (tmpctx , a , a_index );
144
+ const u8 * b_in = linearize_input (tmpctx , b , b_index );
138
145
139
146
return tal_arr_eq (a_in , b_in );
140
147
}
@@ -144,10 +151,8 @@ static bool output_identical(const struct wally_psbt *a,
144
151
const struct wally_psbt * b ,
145
152
size_t b_index )
146
153
{
147
- const u8 * a_out = linearize_output (tmpctx ,
148
- & a -> outputs [a_index ]);
149
- const u8 * b_out = linearize_output (tmpctx ,
150
- & b -> outputs [b_index ]);
154
+ const u8 * a_out = linearize_output (tmpctx , a , a_index );
155
+ const u8 * b_out = linearize_output (tmpctx , b , b_index );
151
156
return tal_arr_eq (a_out , b_out );
152
157
}
153
158
0 commit comments