We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3d4892 commit 47a2631Copy full SHA for 47a2631
src/test/fuzz/base_encode_decode.cpp
@@ -5,6 +5,7 @@
5
#include <test/fuzz/fuzz.h>
6
7
#include <base58.h>
8
+#include <psbt.h>
9
#include <util/string.h>
10
#include <util/strencodings.h>
11
@@ -44,4 +45,8 @@ void test_one_input(const std::vector<uint8_t>& buffer)
44
45
assert(encoded_string == TrimString(encoded_string));
46
assert(ToLower(encoded_string) == ToLower(TrimString(random_encoded_string)));
47
}
48
+
49
+ PartiallySignedTransaction psbt;
50
+ std::string error;
51
+ (void)DecodeBase64PSBT(psbt, random_encoded_string, error);
52
0 commit comments