Files
palladiumcore/src/node/coin.h
NotRin7 0a6901a7f0 1.1.0
2024-03-15 18:16:03 +01:00

25 lines
704 B
C++

// Copyright (c) 2019 The Palladium Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef PALLADIUM_NODE_COIN_H
#define PALLADIUM_NODE_COIN_H
#include <map>
class COutPoint;
class Coin;
struct NodeContext;
/**
* Look up unspent output information. Returns coins in the mempool and in the
* current chain UTXO set. Iterates through all the keys in the map and
* populates the values.
*
* @param[in] node The node context to use for lookup
* @param[in,out] coins map to fill
*/
void FindCoins(const NodeContext& node, std::map<COutPoint, Coin>& coins);
#endif // PALLADIUM_NODE_COIN_H