diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2016-12-15 15:14:02 -0500 |
---|---|---|
committer | Russell Yanofsky <russ@yanofsky.org> | 2016-12-15 15:14:02 -0500 |
commit | 39c77b00e3d61dfea1f45be5d3b77e5adea7b91a (patch) | |
tree | 6cbe30f6088f7cb74f485ba28f9238f978fa534e /src/wallet/wallet.h | |
parent | c6fd923886a3eee01d9e226544b024940038c5e4 (diff) |
Add documentation for CWalletTx::fFromMe member.
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index f7103b6a80..66c9a1ca47 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 |