Silence GCC 7 warning "control reaches end of non-void function" (-Wreturn-type) in psbt.cpp

This commit is contained in:
practicalswift 2019-05-02 08:24:05 +02:00
parent 0936f35f65
commit beb42d71a0

View file

@ -337,7 +337,9 @@ std::string PSBTRoleName(PSBTRole role) {
case PSBTRole::SIGNER: return "signer";
case PSBTRole::FINALIZER: return "finalizer";
case PSBTRole::EXTRACTOR: return "extractor";
// no default case, so the compiler can warn about missing cases
}
assert(false);
}
bool DecodeBase64PSBT(PartiallySignedTransaction& psbt, const std::string& base64_tx, std::string& error)