From 82f731cd647285671686ca3f83f893b054e28df9 Mon Sep 17 00:00:00 2001 From: jl777 Date: Wed, 16 Nov 2016 10:09:00 -0300 Subject: [PATCH] test --- iguana/dpow/dpow_rpc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iguana/dpow/dpow_rpc.c b/iguana/dpow/dpow_rpc.c index 992aa6cb6..1504aefcf 100755 --- a/iguana/dpow/dpow_rpc.c +++ b/iguana/dpow/dpow_rpc.c @@ -192,7 +192,7 @@ cJSON *dpow_listunspent(struct supernet_info *myinfo,struct iguana_info *coin,ch char *dpow_signrawtransaction(struct supernet_info *myinfo,struct iguana_info *coin,char *rawtx,cJSON *vins) { cJSON *array,*privkeys,*item; char *wifstr,*str,*paramstr,*retstr; uint8_t script[256]; int32_t i,n,len,hashtype; struct vin_info V; struct iguana_waddress *waddr; struct iguana_waccount *wacct; - if ( coin->FULLNODE < 0 ) + if ( 0 && coin->FULLNODE < 0 ) { array = cJSON_CreateArray(); jaddistr(array,rawtx); @@ -205,7 +205,7 @@ char *dpow_signrawtransaction(struct supernet_info *myinfo,struct iguana_info *c usleep(10000); return(retstr); } - else if ( coin->FULLNODE > 0 || coin->VALIDATENODE > 0 ) + else if ( 1 ) //coin->FULLNODE > 0 || coin->VALIDATENODE > 0 ) { privkeys = cJSON_CreateArray(); if ( (n= cJSON_GetArraySize(vins)) > 0 )