From bc6e3ed6e4493ac044c86b4505992ef2777455eb Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Fri, 9 Apr 2021 18:54:10 +0200 Subject: [PATCH] Merge #21606: fuzz: Extend psbt fuzz target a bit faaf3954e2f0089b6c6b9965f15e7f9af09c6fb0 fuzz: Extend psbt fuzz target a bit (MarcoFalke) Pull request description: Previously it only merged the psbt with itself, now it tries to merge another. ACKs for top commit: practicalswift: Tested ACK faaf3954e2f0089b6c6b9965f15e7f9af09c6fb0 Tree-SHA512: e1b1d31a47d35e1767285bc2fda176c79cb0550d6d383fe467104272e61e1c83f6cbc0c7d6bbc0c3027729eec13ae1f289f8950117ee91e0fb3703e66d5e6918 --- src/test/fuzz/psbt.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/fuzz/psbt.cpp b/src/test/fuzz/psbt.cpp index de0f706243..b932385e1c 100644 --- a/src/test/fuzz/psbt.cpp +++ b/src/test/fuzz/psbt.cpp @@ -46,6 +46,7 @@ FUZZ_TARGET(psbt) (void)PSBTInputSigned(input); (void)input.IsNull(); } + (void)CountPSBTUnsignedInputs(psbt); for (const PSBTOutput& output : psbt.outputs) { (void)output.IsNull();