diff options
| author | MarcoFalke <[email protected]> | 2018-09-26 15:44:44 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-09-26 15:42:21 -0400 |
| commit | fa69ac761441af3e1195fbb4018b18233a4433d2 (patch) | |
| tree | ce4f9f1b51db76f3b46249efae526701f6ee9b7f /src/script/ismine.cpp | |
| parent | Merge #13877: utils: Make fs::path::string() always return utf-8 string on Wi... (diff) | |
| download | discoin-fa69ac761441af3e1195fbb4018b18233a4433d2.tar.xz discoin-fa69ac761441af3e1195fbb4018b18233a4433d2.zip | |
doxygen: Fix member comments
Diffstat (limited to 'src/script/ismine.cpp')
| -rw-r--r-- | src/script/ismine.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/script/ismine.cpp b/src/script/ismine.cpp index 1433ebf42..51bd2d6e9 100644 --- a/src/script/ismine.cpp +++ b/src/script/ismine.cpp @@ -23,9 +23,9 @@ namespace { */ enum class IsMineSigVersion { - TOP = 0, //! scriptPubKey execution - P2SH = 1, //! P2SH redeemScript - WITNESS_V0 = 2 //! P2WSH witness script execution + TOP = 0, //!< scriptPubKey execution + P2SH = 1, //!< P2SH redeemScript + WITNESS_V0 = 2, //!< P2WSH witness script execution }; /** @@ -35,10 +35,10 @@ enum class IsMineSigVersion */ enum class IsMineResult { - NO = 0, //! Not ours - WATCH_ONLY = 1, //! Included in watch-only balance - SPENDABLE = 2, //! Included in all balances - INVALID = 3, //! Not spendable by anyone (uncompressed pubkey in segwit, P2SH inside P2SH or witness, witness inside witness) + NO = 0, //!< Not ours + WATCH_ONLY = 1, //!< Included in watch-only balance + SPENDABLE = 2, //!< Included in all balances + INVALID = 3, //!< Not spendable by anyone (uncompressed pubkey in segwit, P2SH inside P2SH or witness, witness inside witness) }; bool PermitsUncompressed(IsMineSigVersion sigversion) |