diff options
| author | Gavin Andresen <[email protected]> | 2013-08-12 16:37:14 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-08-12 16:37:14 -0700 |
| commit | 6fc537f490d825cc11a376324395510e9a1834a4 (patch) | |
| tree | 05b2379d5b01ad2f2171b79ce2d50b9c7c7579fb /src | |
| parent | Merge pull request #2890 from cozz/cozz1 (diff) | |
| parent | Add missing 0x prefix in chainparams.cpp (diff) | |
| download | discoin-6fc537f490d825cc11a376324395510e9a1834a4.tar.xz discoin-6fc537f490d825cc11a376324395510e9a1834a4.zip | |
Merge pull request #2892 from r000n/master
Add missing 0x prefix in chainparams.cpp
Diffstat (limited to 'src')
| -rw-r--r-- | src/chainparams.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 3bb62fb79..6b8362404 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -196,7 +196,7 @@ public: genesis.nTime = 1296688602; genesis.nNonce = 414098458; hashGenesisBlock = genesis.GetHash(); - assert(hashGenesisBlock == uint256("000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943")); + assert(hashGenesisBlock == uint256("0x000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943")); vFixedSeeds.clear(); vSeeds.clear(); |