From 39c77b00e3d61dfea1f45be5d3b77e5adea7b91a Mon Sep 17 00:00:00 2001 From: Russell Yanofsky Date: Thu, 15 Dec 2016 15:14:02 -0500 Subject: [PATCH] Add documentation for CWalletTx::fFromMe member. --- src/wallet/wallet.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index f7103b6a8..66c9a1ca4 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -253,6 +253,11 @@ public: unsigned int fTimeReceivedIsTxTime; unsigned int nTimeReceived; //!< time received by this node unsigned int nTimeSmart; + /** + * From me flag is set to 1 for transactions that were created by the wallet + * on this bitcoin node, and set to 0 for transactions that were created + * externally and came in through the network or sendrawtransaction RPC. + */ char fFromMe; std::string strFromAccount; int64_t nOrderPos; //!< position in ordered transaction list