This commit is contained in:
jl777
2018-06-12 00:41:46 -11:00
parent 50b11c4a55
commit 67d2e41b3f
3 changed files with 13 additions and 11 deletions

View File

@@ -585,12 +585,12 @@ CBlockTreeDB *pblocktree = NULL;
#define KOMODO_ZCASH
#include "komodo.h"
int32_t komodo_snapshot()
int64_t komodo_snapshot()
{
int32_t num = -1;
int64_t total = -1;
if ( pblocktree != 0 )
num = pblocktree->Snapshot();
return(num);
total = pblocktree->Snapshot();
return(total);
}
//////////////////////////////////////////////////////////////////////////////