diff options
author | Andrew Chow <achow101-github@achow101.com> | 2021-06-04 20:31:04 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2021-06-10 15:45:47 -0400 |
commit | fbf485c9b2bf1d056bfea77345a15cf56a9cd786 (patch) | |
tree | 3b4e510a4e0bfa9871eec7548a2505c70dc7065c /src/interfaces/chain.h | |
parent | 346e52afd6d5e317c96fc506bb54cde13e87c8b2 (diff) |
Allow tr() import only when Taproot is active
To avoid issues around fund loss, only allow descriptor wallets
to import tr() descriptors after taproot has activated.
Diffstat (limited to 'src/interfaces/chain.h')
-rw-r--r-- | src/interfaces/chain.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interfaces/chain.h b/src/interfaces/chain.h index 3395741b1b..7cac435e96 100644 --- a/src/interfaces/chain.h +++ b/src/interfaces/chain.h @@ -277,6 +277,9 @@ public: //! to be prepared to handle this by ignoring notifications about unknown //! removed transactions and already added new transactions. virtual void requestMempoolTransactions(Notifications& notifications) = 0; + + //! Check if Taproot has activated + virtual bool isTaprootActive() const = 0; }; //! Interface to let node manage chain clients (wallets, or maybe tools for |