Skip to content

Commit 85596bc

Browse files
committed
Uncrustify missed sources file
1 parent 3efee42 commit 85596bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/ctest/test_elements_tx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ static bool tx_pegin(const char *tx_hex, const char **tx_pegin_wit_hex, size_t n
203203
{
204204
struct wally_tx *tx;
205205
struct wally_tx_input *in;
206-
struct wally_tx_witness_stack* pegin_wit;
206+
struct wally_tx_witness_stack *pegin_wit;
207207
struct wally_tx_witness_item *item;
208208
char *new_hex;
209209
const uint32_t flags = WALLY_TX_FLAG_USE_WITNESS | WALLY_TX_FLAG_USE_ELEMENTS;

src/transaction.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ static bool is_valid_tx_input(const struct wally_tx_input *input)
9898
BYTES_VALID(input->script, input->script_len) &&
9999
(!input->witness || is_valid_witness_stack(input->witness))
100100
#ifdef BUILD_ELEMENTS
101-
&& (!input->pegin_witness || is_valid_witness_stack(input->pegin_witness))
101+
&& (!input->pegin_witness || is_valid_witness_stack(input->pegin_witness))
102102
#endif
103-
;
103+
;
104104
}
105105

106106
static bool is_valid_tx_output(const struct wally_tx_output *output)

0 commit comments

Comments
 (0)