Browse Source

Actually this is more optimized

pull/5/head
Duke Leto 4 years ago
parent
commit
ca26e6d820
  1. 4
      src/notarisationdb.cpp

4
src/notarisationdb.cpp

@ -19,8 +19,8 @@ NotarisationsInBlock ScanBlockNotarisations(const CBlock &block, int nHeight)
int timestamp = block.nTime; int timestamp = block.nTime;
bool ishush3 = strncmp(SMART_CHAIN_SYMBOL, "HUSH3",5) == 0 ? true : false; bool ishush3 = strncmp(SMART_CHAIN_SYMBOL, "HUSH3",5) == 0 ? true : false;
// No valid ntz's before this height // No valid ntz's before this height on HUSH3
if(ishush3 && (nHeight <= 340420)) { if(ishush3 && (nHeight <= 350000)) {
return vNotarisations; return vNotarisations;
} }

Loading…
Cancel
Save