diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-02-06 14:57:44 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-02-06 14:58:02 +0100 |
| commit | 870cd2b58aba30ecd57c624ab1f1724b3235cb4d (patch) | |
| tree | b5ae2e0aaa770c34cb9018e8bfb2320a5823909e | |
| parent | Merge #9650: Better handle invalid parameters to signrawtransaction (diff) | |
| parent | Add documentation for CWalletTx::fFromMe member. (diff) | |
| download | discoin-870cd2b58aba30ecd57c624ab1f1724b3235cb4d.tar.xz discoin-870cd2b58aba30ecd57c624ab1f1724b3235cb4d.zip | |
Merge #9378: [trivial] Add documentation for CWalletTx::fFromMe member.
39c77b0 Add documentation for CWalletTx::fFromMe member. (Russell Yanofsky)
| -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 1de04ae16..ea4787c36 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 |