Bitcoin
coin.h
Go to the documentation of this file.
1 // Copyright (c) 2019 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_NODE_COIN_H
6 #define BITCOIN_NODE_COIN_H
7 
8 #include <map>
9 
10 class COutPoint;
11 class Coin;
12 
20 void FindCoins(std::map<COutPoint, Coin>& coins);
21 
22 #endif // BITCOIN_NODE_COIN_H
void FindCoins(std::map< COutPoint, Coin > &coins)
Definition: coin.cpp:10
Definition: transaction.h:18
Definition: coins.h:29