aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorAndrew Chow <github@achow101.com>2023-08-09 09:42:04 -0400
committerAndrew Chow <github@achow101.com>2023-09-12 12:14:31 -0400
commitad0c469d98c51931b98b7fd937c6ac3eeaed024e (patch)
treeb775fbf14245282b5d276550d9eda1086c6251a5 /src/wallet/wallet.h
parent07d3bdf4ebc06825ea24ab6f7c87aef6a22238c6 (diff)
wallet: Use CTxDestination in CRecipient rather than scriptPubKey
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h2
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;
};