diff options
author | Mark Friedenbach <mark@friedenbach.org> | 2014-03-07 12:34:53 -0800 |
---|---|---|
committer | Mark Friedenbach <mark@friedenbach.org> | 2014-03-08 00:43:35 -0800 |
commit | e935293e17b34468034cc5ba3f4fba1cd0dcd957 (patch) | |
tree | 4162c0192b8ec4da42a34c5886cbd97bffb13945 | |
parent | d33f69a4474ee1ec7e998b1232203ed63426c0da (diff) |
Minor code cleanup: remove indentation
This indentation should have been stripped out when AreInputsStandard was made a top-level function instead of a CTransaction method.
-rw-r--r-- | src/main.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.h b/src/main.h index 781562854f..cc1786d0a6 100644 --- a/src/main.h +++ b/src/main.h @@ -266,10 +266,10 @@ int64_t GetMinFee(const CTransaction& tx, unsigned int nBytes, bool fAllowFree, // DUP CHECKSIG DROP ... repeated 100 times... OP_1 // - /** Check for standard transaction types - @param[in] mapInputs Map of previous transactions that have outputs we're spending - @return True if all inputs (scriptSigs) use only standard transaction forms - */ +/** Check for standard transaction types + @param[in] mapInputs Map of previous transactions that have outputs we're spending + @return True if all inputs (scriptSigs) use only standard transaction forms +*/ bool AreInputsStandard(const CTransaction& tx, CCoinsViewCache& mapInputs); /** Count ECDSA signature operations the old-fashioned (pre-0.6) way |