From ca26e6d820079b05bad310ff63f896e10197383a Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Sun, 6 Dec 2020 22:33:10 -0500 Subject: [PATCH] Actually this is more optimized --- src/notarisationdb.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/notarisationdb.cpp b/src/notarisationdb.cpp index f9d9d7510..f11eefe02 100644 --- a/src/notarisationdb.cpp +++ b/src/notarisationdb.cpp @@ -19,8 +19,8 @@ NotarisationsInBlock ScanBlockNotarisations(const CBlock &block, int nHeight) int timestamp = block.nTime; bool ishush3 = strncmp(SMART_CHAIN_SYMBOL, "HUSH3",5) == 0 ? true : false; - // No valid ntz's before this height - if(ishush3 && (nHeight <= 340420)) { + // No valid ntz's before this height on HUSH3 + if(ishush3 && (nHeight <= 350000)) { return vNotarisations; }