File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,9 @@ class Wallet
121
121
// ! Get dest values with prefix.
122
122
virtual std::vector<std::string> getDestValues (const std::string& prefix) = 0;
123
123
124
+ // ! Display address on external signer
125
+ virtual bool displayAddress (const CTxDestination& dest) = 0;
126
+
124
127
// ! Lock coin.
125
128
virtual void lockCoin (const COutPoint& output) = 0;
126
129
Original file line number Diff line number Diff line change @@ -214,6 +214,11 @@ class WalletImpl : public Wallet
214
214
LOCK (m_wallet->cs_wallet );
215
215
return m_wallet->GetDestValues (prefix);
216
216
}
217
+ bool displayAddress (const CTxDestination& dest) override
218
+ {
219
+ LOCK (m_wallet->cs_wallet );
220
+ return m_wallet->DisplayAddress (dest);
221
+ }
217
222
void lockCoin (const COutPoint& output) override
218
223
{
219
224
LOCK (m_wallet->cs_wallet );
You can’t perform that action at this time.
0 commit comments