File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -453,8 +453,6 @@ struct CMutableTransaction
453
453
typedef std::shared_ptr<const CTransaction> CTransactionRef;
454
454
static inline CTransactionRef MakeTransactionRef () { return std::make_shared<const CTransaction>(); }
455
455
template <typename Tx> static inline CTransactionRef MakeTransactionRef (Tx&& txIn) { return std::make_shared<const CTransaction>(std::forward<Tx>(txIn)); }
456
- static inline CTransactionRef MakeTransactionRef (const CTransactionRef& txIn) { return txIn; }
457
- static inline CTransactionRef MakeTransactionRef (CTransactionRef&& txIn) { return std::move (txIn); }
458
456
459
457
/* * Compute the weight of a transaction, as defined by BIP 141 */
460
458
int64_t GetTransactionWeight (const CTransaction &tx);
You can’t perform that action at this time.
0 commit comments