diff options
author | Kostiantyn Stepaniuk <kostya.stepanyuk@gmail.com> | 2018-08-20 14:19:43 +0200 |
---|---|---|
committer | Kostiantyn Stepaniuk <kostya.stepanyuk@gmail.com> | 2018-08-20 15:19:12 +0200 |
commit | d9d79576f423cd9c5cef4547c7e3648dbb339460 (patch) | |
tree | 0ccd7b4a0425a6c10962769172852106bbde7230 /src/coins.h | |
parent | 2a583406c00761c0ac1d162531256b401d5b16c3 (diff) |
Preserve a format of RPC command definitions
Currently RPC commands are formatted in a way that it's easy to read
and that test/lint/check-rpc-mappings.py can parse it.
To void breaking test/lint/check-rpc-mappings.py script by running
clang-format, RPC command definitions should be disabled for clang-format.
Diffstat (limited to 'src/coins.h')
-rw-r--r-- | src/coins.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coins.h b/src/coins.h index 41a422f485..3867a37b39 100644 --- a/src/coins.h +++ b/src/coins.h @@ -285,8 +285,8 @@ public: * Note that lightweight clients may not know anything besides the hash of previous transactions, * so may not be able to calculate this. * - * @param[in] tx transaction for which we are checking input total - * @return Sum of value of all inputs (scriptSigs) + * @param[in] tx transaction for which we are checking input total + * @return Sum of value of all inputs (scriptSigs) */ CAmount GetValueIn(const CTransaction& tx) const; |