diff options
| author | Philip Kaufmann <[email protected]> | 2014-06-10 19:33:12 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-06-10 19:33:12 +0200 |
| commit | 699fe635c6f829e06739e096b0997976e2030ddf (patch) | |
| tree | d7e20b98c944e8f1275dfff6aec6ab619618c396 /src | |
| parent | Merge pull request #4318 from laanwj/2014_06_script_unused_debugging (diff) | |
| download | discoin-699fe635c6f829e06739e096b0997976e2030ddf.tar.xz discoin-699fe635c6f829e06739e096b0997976e2030ddf.zip | |
remove wrong ; in chainparams.h and order includes
Diffstat (limited to 'src')
| -rw-r--r-- | src/chainparams.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chainparams.h b/src/chainparams.h index 988e3ac3a..8370cc569 100644 --- a/src/chainparams.h +++ b/src/chainparams.h @@ -6,9 +6,9 @@ #ifndef BITCOIN_CHAIN_PARAMS_H #define BITCOIN_CHAIN_PARAMS_H -#include "uint256.h" #include "core.h" #include "protocol.h" +#include "uint256.h" #include <vector> @@ -62,7 +62,7 @@ public: /* Used if GenerateBitcoins is called with a negative number of threads */ int DefaultMinerThreads() const { return nMinerThreads; } - const CBlock& GenesisBlock() const { return genesis; }; + const CBlock& GenesisBlock() const { return genesis; } bool RequireRPCPassword() const { return fRequireRPCPassword; } /* Make miner wait to have peers to avoid wasting work */ bool MiningRequiresPeers() const { return fMiningRequiresPeers; } |