diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-03-10 09:33:12 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-03-10 09:33:19 +0100 |
commit | 1cab453ff8e08b2adff750bdb42df1f18ee7bc27 (patch) | |
tree | 1dbec038ef574fac6cd8916702b23c20b54a6d29 | |
parent | fb4f40a0dc0d7126d5567befc6bcb7bdb381ea4d (diff) | |
parent | e935293e17b34468034cc5ba3f4fba1cd0dcd957 (diff) |
Merge pull request #3817
e935293 Minor code cleanup: remove indentation (Mark Friedenbach)
-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 |