mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 06:28:31 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user