diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-02-06 14:57:44 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-02-06 14:58:02 +0100 |
commit | 870cd2b58aba30ecd57c624ab1f1724b3235cb4d (patch) | |
tree | b5ae2e0aaa770c34cb9018e8bfb2320a5823909e /src | |
parent | 40f7e27d25ff74f023371ba607f727375581cb7a (diff) | |
parent | 39c77b00e3d61dfea1f45be5d3b77e5adea7b91a (diff) |
Merge #9378: [trivial] Add documentation for CWalletTx::fFromMe member.
39c77b0 Add documentation for CWalletTx::fFromMe member. (Russell Yanofsky)
Diffstat (limited to 'src')
-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 1de04ae16a..ea4787c363 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -261,6 +261,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 |