You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/wallet/spend.h
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -54,9 +54,9 @@ class COutput
54
54
/** Whether the transaction containing this output is sent from the owning wallet */
55
55
bool from_me;
56
56
57
-
COutput(constCWallet& wallet, constCWalletTx& wtx, int iIn, int depth, int input_bytes, bool spendable, bool solvable, bool safe, int64_t time, bool from_me)
58
-
: outpoint(COutPoint(wtx.GetHash(), iIn)),
59
-
txout(wtx.tx->vout.at(iIn)),
57
+
COutput(constCOutPoint& outpoint, constCTxOut& txout, int depth, int input_bytes, bool spendable, bool solvable, bool safe, int64_t time, bool from_me)
auto ret = wallet.mapWallet.emplace(std::piecewise_construct, std::forward_as_tuple(txid), std::forward_as_tuple(MakeTransactionRef(std::move(tx)), TxStateInactive{}));
0 commit comments