aboutsummaryrefslogtreecommitdiff
path: root/src/external_signer.h
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2021-04-13 19:55:59 +0800
committerfanquake <fanquake@gmail.com>2021-04-13 20:09:34 +0800
commitc8f469c6d50a8db6d92f0aed47a5d1cc82f30f7f (patch)
tree1a837e6e83ada96dfff569be2a6c31c38c80eeca /src/external_signer.h
parent9e0b199b976617edeb1c58d4203df5f83a26c1e3 (diff)
downloadbitcoin-c8f469c6d50a8db6d92f0aed47a5d1cc82f30f7f.tar.xz
external_signer: remove ExternalSignerException
It's not clear why this need it's own exception class, as opposed to just throwing std::runtime_error().
Diffstat (limited to 'src/external_signer.h')
-rw-r--r--src/external_signer.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/external_signer.h b/src/external_signer.h
index 798662672e..b3b202091a 100644
--- a/src/external_signer.h
+++ b/src/external_signer.h
@@ -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