diff options
author | Andrew Chow <achow101-github@achow101.com> | 2019-07-16 13:50:32 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-04-23 13:25:50 -0400 |
commit | 78f8a92910d34247fa5d04368338c598d9908267 (patch) | |
tree | d357f03efc4736b9ad2adc1f19f19875764b01f5 /src/wallet/scriptpubkeyman.cpp | |
parent | 834de0300cde57ca3f662fb7aa5b1bdaed68bc8f (diff) |
Implement SetType in DescriptorScriptPubKeyMan
Diffstat (limited to 'src/wallet/scriptpubkeyman.cpp')
-rw-r--r-- | src/wallet/scriptpubkeyman.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/wallet/scriptpubkeyman.cpp b/src/wallet/scriptpubkeyman.cpp index ea61ab793e..c825438f99 100644 --- a/src/wallet/scriptpubkeyman.cpp +++ b/src/wallet/scriptpubkeyman.cpp @@ -1608,4 +1608,8 @@ uint256 DescriptorScriptPubKeyMan::GetID() const return uint256(); } -void DescriptorScriptPubKeyMan::SetType(OutputType type, bool internal) {} +void DescriptorScriptPubKeyMan::SetType(OutputType type, bool internal) +{ + this->m_address_type = type; + this->m_internal = internal; +} |