| 626 | |
| 627 | typedef std::shared_ptr<const CTransaction> CTransactionRef; |
| 628 | template <typename Tx> static inline CTransactionRef MakeTransactionRef(Tx&& txIn) { return std::make_shared<const CTransaction>(std::forward<Tx>(txIn)); } |
| 629 | |
| 630 | /** A generic txid reference (txid or wtxid). */ |
| 631 | class GenTxid |
no outgoing calls