diff options
| author | Jeff Garzik <[email protected]> | 2013-06-19 11:32:49 -0400 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2013-06-19 11:32:49 -0400 |
| commit | 168ba993921c2c1a21cad1f03a331f7c01c67079 (patch) | |
| tree | 322cc79cf2e856618df25ecee1cea13cf3594e43 /src/main.h | |
| parent | Merge pull request #2760 from cozz/cozz2 (diff) | |
| download | discoin-168ba993921c2c1a21cad1f03a331f7c01c67079.tar.xz discoin-168ba993921c2c1a21cad1f03a331f7c01c67079.zip | |
Pass check level, check depth to VerifyDB()
Diffstat (limited to 'src/main.h')
| -rw-r--r-- | src/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h index 87f1dbfa8..19d4a87b3 100644 --- a/src/main.h +++ b/src/main.h @@ -146,7 +146,7 @@ bool LoadBlockIndex(); /** Unload database information */ void UnloadBlockIndex(); /** Verify consistency of the block and coin databases */ -bool VerifyDB(); +bool VerifyDB(int nCheckLevel, int nCheckDepth); /** Print the loaded block tree */ void PrintBlockTree(); /** Find a block by height in the currently-connected chain */ |