diff options
author | Andrew Chow <github@achow101.com> | 2023-08-09 09:42:04 -0400 |
---|---|---|
committer | Andrew Chow <github@achow101.com> | 2023-09-12 12:14:31 -0400 |
commit | ad0c469d98c51931b98b7fd937c6ac3eeaed024e (patch) | |
tree | b775fbf14245282b5d276550d9eda1086c6251a5 /src/wallet/wallet.h | |
parent | 07d3bdf4ebc06825ea24ab6f7c87aef6a22238c6 (diff) |
wallet: Use CTxDestination in CRecipient rather than scriptPubKey
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 091a573151..97d06641a7 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -288,7 +288,7 @@ inline std::optional<AddressPurpose> PurposeFromString(std::string_view s) struct CRecipient { - CScript scriptPubKey; + CTxDestination dest; CAmount nAmount; bool fSubtractFeeFromAmount; }; |