[#DecodeRawPSBT] = DecodeRawPSBT :mrdocs: Decode a raw binary PSBT into a PartiallySignedTransaction. == Synopsis Declared in `<psbt.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[nodiscard]] xref:util/Result.adoc[util::Result<PartiallySignedTransaction>] DecodeRawPSBT(std::span<std::byte const> tx_data); ---- == Return Value The decoded PSBT, or an error on failure. [NOTE] ==== The return value https://en.cppreference.com/cpp/language/attributes/nodiscard[should not be discarded^]. ==== == Parameters [cols="1,4"] |=== | Name| Description | *tx_data* | The raw PSBT bytes. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#