1 // Copyright (c) 2021 The Bitcoin Core developers 2 // Distributed under the MIT software license, see the accompanying 3 // file COPYING or http://www.opensource.org/licenses/mit-license.php. 4 5 #ifndef BITCOIN_WALLET_RECEIVE_H 6 #define BITCOIN_WALLET_RECEIVE_H 7 8 #include <amount.h> 9 #include <wallet/ismine.h> 10 #include <wallet/transaction.h> 11 #include <wallet/wallet.h> 12 13 struct COutputEntry 14 { 15 CTxDestination destination; 16 CAmount amount; 17 int vout; 18 }; 19 20 #endif // BITCOIN_WALLET_RECEIVE_H 21