Skip to content

Commit 8dfe46c

Browse files
committed
Merge remote-tracking branch 'upstream/master' into chore/axelar-xrpl-evm
2 parents e09a727 + d2f5299 commit 8dfe46c

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

src/handlers/runCCIP.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

src/handlers/runMayan.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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);

src/server/cron.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff 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
};

0 commit comments

Comments
 (0)