File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,8 @@ export const createApis = async (ctx) => {
197197 console . error ( 'Error updating hb processes file' , err )
198198 return { }
199199 } )
200- processesFile = { HB_PROCESSES : json . hb_processes || { } , PROCESSES : json . processes || { } }
200+ // disable result from HB_PROCESSES because it is happening in the cu router
201+ processesFile = { HB_PROCESSES : { } || { } , PROCESSES : json . processes || { } }
201202 console . log ( 'Updated processes file' )
202203 } , { runOnInit : true } )
203204
@@ -515,7 +516,8 @@ export const createResultApis = async (ctx) => {
515516 console . error ( 'Error updating hb processes file' , err )
516517 return { }
517518 } )
518- processesFile = { HB_PROCESSES : json . hb_processes || { } , PROCESSES : json . processes || { } }
519+ // disable result from HB_PROCESSES because it is happening in the cu router
520+ processesFile = { HB_PROCESSES : { } || { } , PROCESSES : json . processes || { } }
519521 console . log ( 'Updated processes file' )
520522 } , { runOnInit : true } )
521523
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ struct FromTo {
2626 to : Option < String > ,
2727 limit : Option < i32 > ,
2828 #[ serde( rename = "process-id" ) ]
29- process_id : String ,
29+ process_id : Option < String > ,
3030 #[ serde( rename = "from-nonce" ) ]
3131 from_nonce : Option < String > ,
3232 #[ serde( rename = "to-nonce" ) ]
You can’t perform that action at this time.
0 commit comments