File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed
Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ const _handler = async (options: HandlerOptions = {}): Promise<void> => {
137137 amount : event . amount ,
138138 is_deposit : event . is_deposit ,
139139 is_usd_volume : event . is_usd_volume ,
140- tx_block : null ,
140+ tx_block : 0 ,
141141 txs_counted_as : null ,
142142 origin_chain : null ,
143143 } ) ) . filter ( ( tx ) => ! ! tx . bridge_id ) ;
Original file line number Diff line number Diff line change @@ -127,6 +127,4 @@ export const handler = async () => {
127127 }
128128} ;
129129
130- // export default wrapScheduledLambda(handler);
131-
132- handler ( ) . then ( ( ) => process . exit ( 0 ) ) ;
130+ export default wrapScheduledLambda ( handler ) ;
Original file line number Diff line number Diff line change @@ -95,10 +95,7 @@ const cron = () => {
9595 runEvery ( "runRelay" , 30 , runRelay ) ;
9696 runEvery ( "runCashmere" , 30 , runCashmere ) ;
9797 runEvery ( "runTeleswap" , 30 , runTeleswap ) ;
98-
99- if ( new Date ( ) . getHours ( ) === 0 ) {
100- runEvery ( "runCCIP" , 30 , runCCIP ) ;
101- }
98+ runEvery ( "runCCIP" , 30 , runCCIP ) ;
10299
103100 exit ( ) ;
104101} ;
You can’t perform that action at this time.
0 commit comments