external_signer: remove ExternalSignerException

It's not clear why this need it's own exception class, as opposed to just
throwing std::runtime_error().
This commit is contained in:
fanquake
2021-04-13 19:55:59 +08:00
parent 9e0b199b97
commit c8f469c6d5
3 changed files with 6 additions and 11 deletions

View File

@@ -8,7 +8,6 @@
#include <univalue.h>
#include <util/system.h>
#include <stdexcept>
#include <string>
#include <vector>
@@ -16,11 +15,6 @@
struct PartiallySignedTransaction;
class ExternalSignerException : public std::runtime_error {
public:
using std::runtime_error::runtime_error;
};
//! Enables interaction with an external signing device or service, such as
//! a hardware wallet. See doc/external-signer.md
class ExternalSigner