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 @@ -203,6 +203,11 @@ class WalletImpl : public Wallet
203203 LOCK (m_wallet->cs_wallet );
204204 return m_wallet->GetDestValues (prefix);
205205 }
206+ bool displayAddress (const CTxDestination& dest) override
207+ {
208+ LOCK (m_wallet->cs_wallet );
209+ return m_wallet->DisplayAddress (dest);
210+ }
206211 void lockCoin (const COutPoint& output) override
207212 {
208213 LOCK (m_wallet->cs_wallet );
Original file line number Diff line number Diff line change @@ -121,6 +121,9 @@ class Wallet
121121 // ! Get dest values with prefix.
122122 virtual std::vector<std::string> getDestValues (const std::string& prefix) = 0;
123123
124+ // ! Display address on external signer
125+ virtual bool displayAddress (const CTxDestination& dest) = 0;
126+
124127 // ! Lock coin.
125128 virtual void lockCoin (const COutPoint& output) = 0;
126129
You can’t perform that action at this time.
0 commit comments