From 28d3cff284f5d4fd6f0e2642d952b2a49f61896b Mon Sep 17 00:00:00 2001 From: jl777 Date: Tue, 27 Aug 2019 08:43:51 -1100 Subject: [PATCH] Fix dpowconfs --- src/komodo_notary.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/komodo_notary.h b/src/komodo_notary.h index 6b9056ed7..0cf714a1d 100644 --- a/src/komodo_notary.h +++ b/src/komodo_notary.h @@ -372,7 +372,7 @@ int32_t komodo_dpowconfs(int32_t txheight,int32_t numconfs) if ( txheight < sp->NOTARIZED_HEIGHT ) return(numconfs); else return(1); - } + } else return(1); } return(numconfs); }