diff options
| author | Gregory Maxwell <[email protected]> | 2012-08-24 02:44:51 -0400 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2012-08-24 02:48:19 -0400 |
| commit | bdab0cf58c2ac1b90ba2723e8f9ddc1817b3d811 (patch) | |
| tree | d7b42a24e6c194d7b9a86a2d27dd320b9d1b02d2 /src/bitcoinrpc.cpp | |
| parent | Merge pull request #1409 from luke-jr/listtx_generate_fold (diff) | |
| download | discoin-bdab0cf58c2ac1b90ba2723e8f9ddc1817b3d811.tar.xz discoin-bdab0cf58c2ac1b90ba2723e8f9ddc1817b3d811.zip | |
Avoid leaving return types or function attributes on their own lines.
Diffstat (limited to 'src/bitcoinrpc.cpp')
| -rw-r--r-- | src/bitcoinrpc.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 5537eb481..4aebc2078 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -104,8 +104,7 @@ Value ValueFromAmount(int64 amount) return (double)amount / (double)COIN; } -std::string -HexBits(unsigned int nBits) +std::string HexBits(unsigned int nBits) { union { int32_t nBits; |