Merge branch 'dev' into duke

This commit is contained in:
Duke
2023-04-05 19:18:18 -07:00
9 changed files with 154 additions and 4 deletions

View File

@@ -37,6 +37,7 @@
#include <boost/algorithm/string/case_conv.hpp> // for to_lower()
#include <boost/foreach.hpp>
#include <deque>
#include <boost/scoped_ptr.hpp>
/** HTTP request work item */

View File

@@ -505,7 +505,7 @@ int32_t hush_verifynotarization(char *symbol,char *dest,int32_t height,int32_t N
{
if ( (json= cJSON_Parse(jsonstr)) != 0 )
{
if ( (txjson= jobj(json,(char *)"result")) != 0 && (vouts= jarray(&n,txjson,(char *)"vout")) > 0 )
if ( (txjson= jobj(json,(char *)"result")) != 0 && (vouts= jarray(&n,txjson,(char *)"vout")) != 0 )
{
vout = jitem(vouts,n-1);
if ( 0 && SMART_CHAIN_SYMBOL[0] != 0 )

View File

@@ -16,6 +16,7 @@
#include <chrono>
#include <thread>
#include <functional>
static CMainSignals g_signals;