diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-06-04 08:50:27 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-06-04 09:14:51 +0200 |
| commit | 358a61ee061f5cec53c62e8226872a2d02afdb0d (patch) | |
| tree | 4e16bf72ca93da45174a3a15cd0969c71f8d6c16 /src/rpcblockchain.cpp | |
| parent | Merge pull request #4279 (diff) | |
| parent | VerifyDB progress (diff) | |
| download | discoin-358a61ee061f5cec53c62e8226872a2d02afdb0d.tar.xz discoin-358a61ee061f5cec53c62e8226872a2d02afdb0d.zip | |
Merge pull request #4223
06a91d9 VerifyDB progress (Cozz Lovan)
Diffstat (limited to 'src/rpcblockchain.cpp')
| -rw-r--r-- | src/rpcblockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index a303b5d3e..ff5057b52 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -427,7 +427,7 @@ Value verifychain(const Array& params, bool fHelp) if (params.size() > 1) nCheckDepth = params[1].get_int(); - return VerifyDB(nCheckLevel, nCheckDepth); + return CVerifyDB().VerifyDB(nCheckLevel, nCheckDepth); } Value getblockchaininfo(const Array& params, bool fHelp) |