Browse Source

Add documentation for CWalletTx::fFromMe member.

0.14
Russell Yanofsky 8 years ago
parent
commit
39c77b00e3
  1. 5
      src/wallet/wallet.h

5
src/wallet/wallet.h

@ -253,6 +253,11 @@ public: @@ -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

Loading…
Cancel
Save