aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
authorSjors Provoost <sjors@sprovoost.nl>2019-09-16 19:00:55 +0200
committerSjors Provoost <sjors@sprovoost.nl>2021-05-27 14:01:54 +0200
commit450cb40a344605dda3bcc39495c35869580b9fc2 (patch)
treed88a64c0ca21bbad8d0506edad90b19b9e4c4702 /src/interfaces
parenteef8d6452962cd4a8956d9ad268164715365b9ab (diff)
downloadbitcoin-450cb40a344605dda3bcc39495c35869580b9fc2.tar.xz
wallet: add displayAddress to interface
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/wallet.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interfaces/wallet.h b/src/interfaces/wallet.h
index 6ccfd7fc20..988e59b65a 100644
--- a/src/interfaces/wallet.h
+++ b/src/interfaces/wallet.h
@@ -121,6 +121,9 @@ public:
//! Get dest values with prefix.
virtual std::vector<std::string> getDestValues(const std::string& prefix) = 0;
+ //! Display address on external signer
+ virtual bool displayAddress(const CTxDestination& dest) = 0;
+
//! Lock coin.
virtual void lockCoin(const COutPoint& output) = 0;