diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2018-12-15 19:52:03 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2023-06-23 02:05:24 +0000 |
commit | f3fbe99fcf90daec79d49fd5d868102dc99feb23 (patch) | |
tree | a84011ce1fd3e7ef37cbd28f70c4e556f27db728 /src/interfaces/wallet.h | |
parent | b9765ba1d67d7b74c17f9ce70cad5487715208a0 (diff) |
GUI: TransactionRecord: Refactor to turn send-to-self into send+receive pairs
Diffstat (limited to 'src/interfaces/wallet.h')
-rw-r--r-- | src/interfaces/wallet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/wallet.h b/src/interfaces/wallet.h index f26ac866dc..b5d98e36fe 100644 --- a/src/interfaces/wallet.h +++ b/src/interfaces/wallet.h @@ -387,6 +387,7 @@ struct WalletTx CTransactionRef tx; std::vector<wallet::isminetype> txin_is_mine; std::vector<wallet::isminetype> txout_is_mine; + std::vector<bool> txout_is_change; std::vector<CTxDestination> txout_address; std::vector<wallet::isminetype> txout_address_is_mine; CAmount credit; |