diff options
| author | Russell Yanofsky <[email protected]> | 2016-12-15 15:14:02 -0500 |
|---|---|---|
| committer | Russell Yanofsky <[email protected]> | 2016-12-15 15:14:02 -0500 |
| commit | 39c77b00e3d61dfea1f45be5d3b77e5adea7b91a (patch) | |
| tree | 6cbe30f6088f7cb74f485ba28f9238f978fa534e /src | |
| parent | Merge #9331: [qa] Add test for rescan feature of wallet key import RPCs (diff) | |
| download | discoin-39c77b00e3d61dfea1f45be5d3b77e5adea7b91a.tar.xz discoin-39c77b00e3d61dfea1f45be5d3b77e5adea7b91a.zip | |
Add documentation for CWalletTx::fFromMe member.
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 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 |