diff options
| author | Philip Kaufmann <[email protected]> | 2014-01-11 18:14:29 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-01-11 18:17:09 +0100 |
| commit | c037531d691fb984f979f393803989d1856d46ee (patch) | |
| tree | 151512cae05db91c19cc8ecc206029934d40bc9c /src/rpcrawtransaction.cpp | |
| parent | makefile.am: split long lines into one file per line (diff) | |
| download | discoin-c037531d691fb984f979f393803989d1856d46ee.tar.xz discoin-c037531d691fb984f979f393803989d1856d46ee.zip | |
small headers ordering cleanup
- keep headers in alphabetical order
- fix Makefile.am (2 files in 1 line - leftover)
- remove some spaces etc.
Diffstat (limited to 'src/rpcrawtransaction.cpp')
| -rw-r--r-- | src/rpcrawtransaction.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp index 86025918e..ff652ca34 100644 --- a/src/rpcrawtransaction.cpp +++ b/src/rpcrawtransaction.cpp @@ -4,13 +4,13 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "base58.h" -#include "rpcserver.h" +#include "core.h" #include "init.h" +#include "keystore.h" +#include "main.h" #include "net.h" +#include "rpcserver.h" #include "uint256.h" -#include "core.h" -#include "main.h" -#include "keystore.h" #ifdef ENABLE_WALLET #include "wallet.h" #endif |